nixos-config/system/desktop/restic.nix

12 lines
280 B
Nix
Raw Normal View History

2020-01-28 05:02:59 +01:00
{ lib, ... }: {
2019-10-24 02:20:38 +02:00
backup.services.restic = {
2020-02-03 05:21:27 +01:00
"on-porani.insecure".enable = lib.mkDefault true;
"on-workhorse.private".enable = lib.mkDefault true;
"on-workout.private".enable = lib.mkDefault true;
2019-10-24 02:20:38 +02:00
};
2019-12-20 05:54:26 +01:00
backup.all.restic.dirs = [ "/home/palo/.password-store" ];
2019-10-24 02:20:38 +02:00
}