add watchdog to homelab

This commit is contained in:
death916 2025-09-12 04:23:43 -07:00
parent c9c4afa59e
commit a08e1a75e3

View file

@ -20,5 +20,12 @@
config = {
services.kopia-server.enable = true;
system.stateVersion = "24.11";
# Auto-reboot the system if it hangs (5 minute timeout)
boot.kernelModules = [ "sp5100_tco" ];
hardware.watchdog = {
enable = true;
timeout = 300;
};
};
}