about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-08-06T20·59-0700
committerclbot <clbot@tvl.fyi>2022-08-06T22·21+0000
commit42ff8ccf5f5a6573181b47a3a2035d9c6136123c (patch)
treed59dfaba61a8922e247f1abd1ee5de97624f8900
parent1cd505e834ab6250218c3772868b39ec860704fa (diff)
feat(wpcarro/marcus): Disable auto-reboot r/4391
This only somewhat works, and I don't really need it.

Change-Id: I4e78e5fd49ec07e6cb90a3feef8a4c87cb7b7707
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6047
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
-rw-r--r--users/wpcarro/nixos/marcus/default.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/users/wpcarro/nixos/marcus/default.nix b/users/wpcarro/nixos/marcus/default.nix
index b4778cad81..fb7470a0e7 100644
--- a/users/wpcarro/nixos/marcus/default.nix
+++ b/users/wpcarro/nixos/marcus/default.nix
@@ -39,15 +39,6 @@ in
     interfaces.wlp0s20f3.useDHCP = true;
   };
 
-  # Schedule daily reboots.
-  systemd.timers.auto-reboot = {
-    wantedBy = [ "timers.target" ];
-    timerConfig = {
-      OnCalendar = "*-*-* 03:00:00";
-      Unit = "reboot.target";
-    };
-  };
-
   services = wpcarro.common.services // {
     # Enable the Tailscale daemon to connect to work and personal Tailnet.
     tailscale.enable = true;