diff --git a/nixos/hosts/queen/configuration.nix b/nixos/hosts/queen/configuration.nix index abbc2f5..1e7dbf5 100644 --- a/nixos/hosts/queen/configuration.nix +++ b/nixos/hosts/queen/configuration.nix @@ -97,17 +97,16 @@ youtube-dl ]; - # Create an auto-update systemd service that runs every Saturday + # Create an auto-update systemd service that runs every day systemd.services = { updater = { path = [ pkgs.rebuild + pkgs.nix + pkgs.bash ]; - script = "rebuild"; - serviceConfig = { - User = config.users.users.root; - }; - startAt = "weekly"; + script = "bash /run/current-system/sw/bin/rebuild"; + startAt = "daily"; }; };