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

24 lines
416 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
'';
}