mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
24 lines
416 B
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
|
|
'';
|
|
}
|