1
0

Compare commits

..

No commits in common. "80cc6522daae4215de1d720008e824570bb62a61" and "5ef293448d653db7bff65bf3ddd53cec8481263f" have entirely different histories.

8 changed files with 1 additions and 42 deletions

View File

@ -1,25 +0,0 @@
{ ... }:
{
clerie.backup = {
enable = true;
jobs.main = {
paths = [
"/home"
"/var/lib"
];
exclude = [
"/home/*/.local/share/Trash/"
"/home/*/.config/*.log"
"/home/*/.local/*.log"
"/home/*/.cache/"
"/home/*/.config/*[Cc]ache*/"
"/home/*/.mozilla/*/cache/"
"/home/*/.thumbnails/"
"/home/clerie/tmp/"
"/home/clere/Downloads/"
];
};
};
}

View File

@ -7,7 +7,6 @@
../../configuration/desktop ../../configuration/desktop
./backup.nix
./network.nix ./network.nix
./programs.nix ./programs.nix
]; ];

View File

@ -1,11 +0,0 @@
age-encryption.org/v1
-> ssh-ed25519 HwR33w VDZ3mtQaW1MsXQ6gan2Xcfv4/8IHHdMsPqCZDuauPEE
WSUmbw8NXcgkJf06iNFGsx7tNiVt7VAnynqroRymbkU
-> ssh-ed25519 xvh52g ie1NcuCJIJrPX4oklSLXEoxd6YmapsbOr4wf6TrJYEM
lx5xuRHZXXG1YuYoDUlvPZxxtfDE1Sv/aStz53mJ4nI
-> ,TT@-grease 6JH, x4O9 $E$9`?` &
pd1+tQGZkVIl7xbEsdJw9zQiNjy2/83PF+uAaekiLTolgHXmPWIp70ZsL6oHA/G6
y1JOCL9l03GSgbpx
--- Lv/Xf3QnA523yOR63Gugq9mvfen5+YR2OYwGEim59B4
¼JM«°@gû&V<|ôŸ®fšÑ<l
V{¥àتš¸2~i.úªÌ1´á¬<C3A1>ŠžgÌRb©NÇŽòe¿Œ9NdßüÚÝ|F%](_À|

View File

@ -43,7 +43,7 @@ let
restic snapshots || restic init restic snapshots || restic init
restic backup ${optionalString (jobOptions.exclude != []) (pkgs.writeText "clerie-backup-${jobName}-${targetName}-excludes" (concatStringsSep "\n" jobOptions.exclude))} ${escapeShellArgs jobOptions.paths} restic backup ${escapeShellArgs jobOptions.paths}
restic check restic check
@ -96,10 +96,6 @@ let
paths = mkOption { paths = mkOption {
type = with types; listOf str; type = with types; listOf str;
}; };
exclude = mkOption {
type = with types; listOf str;
default = [];
};
}; };
}; };
in in