diff --git a/system/nixos/configuration.nix b/system/nixos/configuration.nix
index 0f58bf0c..fb9fb9fd 100644
--- a/system/nixos/configuration.nix
+++ b/system/nixos/configuration.nix
@@ -243,9 +243,16 @@ in {
   };
 
   system.autoUpgrade = {
-    allowReboot = true;
     enable = true;
-    flake = "nixedo";
+    flake = inputs.self.outPath;
+    flags = [
+      "--update-input"
+      "nixpkgs"
+      "--no-write-lock-file"
+      "-L" # print build logs
+    ];
+    dates = "08:00";
+    randomizedDelaySec = "45min";
   };
 
   services.gvfs.enable = true;