mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 06:19:01 +00:00
20 lines
388 B
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
|
|
'';
|
|
}
|