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

20 lines
388 B
Nix

{ config, lib, pkgs, ... }:
{
programs.borgmatic = {
enable = true;
backups = {
personal.settings = { hello = "WORLD"; };
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
'';
}