mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-02 13:06:11 +01:00
8 lines
266 B
Nix
8 lines
266 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
systemd.watchdog.runtimeTime = "60s";
|
||
|
systemd.watchdog.rebootTime = "10m";
|
||
|
systemd.watchdog.kexecTime = "5m";
|
||
|
systemd.services."emergency".serviceConfig.ExecStartPre = "/bin/sh -c \"read -t 30 || /run/current-system/sw/bin/systemctl reboot\"";
|
||
|
}
|