We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a4dc5c + 1e47533 commit c6808c5Copy full SHA for c6808c5
nixos/server/default.nix
@@ -94,15 +94,15 @@
94
# the interval defined here, so every 7.5s.
95
# If the hardware watchdog does not get a signal for 15s,
96
# it will forcefully reboot the system.
97
- runtimeTime = "15s";
+ runtimeTime = lib.mkDefault "15s";
98
# Forcefully reboot if the final stage of the reboot
99
# hangs without progress for more than 30s.
100
# For more info, see:
101
# https://utcc.utoronto.ca/~cks/space/blog/linux/SystemdShutdownWatchdog
102
- rebootTime = "30s";
+ rebootTime = lib.mkDefault "30s";
103
# Forcefully reboot when a host hangs after kexec.
104
# This may be the case when the firmware does not support kexec.
105
- kexecTime = "1m";
+ kexecTime = lib.mkDefault "1m";
106
};
107
108
sleep.extraConfig = ''
0 commit comments