mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
19 lines
408 B
Nix
19 lines
408 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
|
||
|
backups = config.programs.borgmatic.backups;
|
||
|
|
||
|
in {
|
||
|
programs.borgmatic = {
|
||
|
enable = true;
|
||
|
backups = { main = { location = { repositories = [ "/mnt/disk1" ]; }; }; };
|
||
|
};
|
||
|
|
||
|
test.stubs.borgmatic = { };
|
||
|
|
||
|
test.asserts.assertions.expected = [''
|
||
|
Borgmatic backup configuration "main" must specify one of 'location.sourceDirectories' or 'location.patterns'.
|
||
|
''];
|
||
|
}
|