nixos-config/tests/modules/home-manager/programs/borgmatic/basic.nix

20 lines
388 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
programs.borgmatic = {
enable = true;
backups = {
2025-01-29 04:48:19 +00:00
personal.settings = { hello = "WORLD"; };
2025-01-29 04:48:19 +00:00
bizness.settings = { hello = "MONEY"; };
};
};
test.stubs.borgmatic = { };
nmt.script = ''
assertFileExists home-files/.config/borgmatic.d/personal.yaml
assertFileExists home-files/.config/borgmatic.d/bizness.yaml
'';
}