diff --git a/modules/nixos/profiles/dev.nix b/modules/nixos/profiles/dev.nix index 703b4a06..e30a459b 100644 --- a/modules/nixos/profiles/dev.nix +++ b/modules/nixos/profiles/dev.nix @@ -65,10 +65,11 @@ in { systemd.user.services.upgrade-nix-profile = { description = '' - Update packages installed through `nix profile`. + Update packages installed through 'nix profile'. ''; - enable = false; script = "nix profile upgrade '.*'"; + path = [ config.nix.package ]; + startAt = "weekly"; }; })