diff --git a/home/default.nix b/home/default.nix index 0305be9..be57708 100644 --- a/home/default.nix +++ b/home/default.nix @@ -13,12 +13,6 @@ inputs.spicetify-nix.nixosModules.default ]; - # Configure them here, because here I still have the system config.age. ... - home-manager.users.etwas.services.restic.backups.localbackup = { - passwordFile = config.age.secrets.restic-password.path; - environmentFile = config.age.secrets.restic-s3-key.path; - }; - home-manager = { useUserPackages = true; # useGlobalPkgs = true; @@ -54,6 +48,11 @@ ./misc_pkgs ./wm ]; + + services.restic.backups.localbackup = { + passwordFile = config.age.secrets.restic-password.path; + environmentFile = config.age.secrets.restic-s3-key.path; + }; }; };