leon #105

Closed
leon wants to merge 74 commits from (deleted):leon into master
1 changed files with 9 additions and 4 deletions
Showing only changes of commit fdc09cc55a - Show all commits

View File

@ -125,10 +125,15 @@ lib.mkMerge [
};
};
# Reboot on hang
systemd.watchdog = lib.mkIf (!config.boot.isContainer) {
runtimeTime = "15s";
rebootTime = "15s";
systemd = {
# Do not break the boot
enableEmergencyMode = false;
# Reboot on hang
watchdog = lib.mkIf (!config.boot.isContainer) {
runtimeTime = "15s";
rebootTime = "15s";
};
};
time.timeZone = lib.mkDefault "Europe/Berlin";