mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
backups = config.programs.borgmatic.backups;
|
||
|
excludeFile = pkgs.writeText "excludeFile.txt" "/foo/bar";
|
||
|
in {
|
||
|
config = {
|
||
|
programs.borgmatic = {
|
||
|
enable = true;
|
||
|
backups = {
|
||
|
main = {
|
||
|
location = {
|
||
|
sourceDirectories = [ "/my-stuff-to-backup" ];
|
||
|
repositories = [ "/mnt/disk1" ];
|
||
|
excludeHomeManagerSymlinks = false;
|
||
|
extraConfig = { exclude_from = [ (toString excludeFile) ]; };
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs.borgmatic = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
config_file=$TESTED/home-files/.config/borgmatic.d/main.yaml
|
||
|
assertFileExists $config_file
|
||
|
|
||
|
declare -A expectations
|
||
|
|
||
|
expectations[location.exclude_from[0]]="${excludeFile}"
|
||
|
|
||
|
yq=${pkgs.yq-go}/bin/yq
|
||
|
|
||
|
for filter in "''${!expectations[@]}"; do
|
||
|
expected_value="''${expectations[$filter]}"
|
||
|
actual_value="$($yq ".$filter" $config_file)"
|
||
|
|
||
|
if [[ "$actual_value" != "$expected_value" ]]; then
|
||
|
fail "Expected '$filter' to be '$expected_value' but was '$actual_value'"
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
'';
|
||
|
};
|
||
|
}
|