profiles/dev: add schedule for user profile update

This commit is contained in:
Gabriel Arazas 2022-09-21 14:24:01 +08:00
parent 15f1a83562
commit 9cf40ed1af

View File

@ -65,10 +65,11 @@ in {
systemd.user.services.upgrade-nix-profile = { systemd.user.services.upgrade-nix-profile = {
description = '' description = ''
Update packages installed through `nix profile`. Update packages installed through 'nix profile'.
''; '';
enable = false;
script = "nix profile upgrade '.*'"; script = "nix profile upgrade '.*'";
path = [ config.nix.package ];
startAt = "weekly";
}; };
}) })