diff --git a/flake.nix b/flake.nix index 1d12e29..13c8535 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 285 current 2025-10-11 08:57:30 25.05.20251006.20c4598 6.12.50 * +# generation: 286 current 2025-10-11 09:36:17 25.05.20251006.20c4598 6.12.50 * { description = "blakes nix config"; inputs = { diff --git a/modules/system/backups.nix b/modules/system/backups.nix index 453195f..d281600 100644 --- a/modules/system/backups.nix +++ b/modules/system/backups.nix @@ -5,7 +5,11 @@ let borg = "${pkgs.borgbackup}/bin/borg"; backup_paths = lib.unique config.modules.system.backups.paths; passwd_file = config.sops.secrets."borg_passwd".path; - jobs = cfg.jobs; + jobs = { + sungger = { paths = [ "/var/lib/radarr" "/var/lib/sonarr" ]; }; + hoass = { paths = [ "/var/lib/zigbee2mqtt" "/var/lib/hass" "/var/lib/mosquitto" ]; }; + huh = { paths = [ "/home/blake/.nix" ]; }; + }; in { options.modules.system.backups = {