diff options
-rw-r--r-- | hosts/arrakis/default.nix | 3 | ||||
-rw-r--r-- | hosts/common/optional/wdt.nix | 3 | ||||
-rw-r--r-- | hosts/darkstar/default.nix | 1 | ||||
-rw-r--r-- | hosts/ginaz/default.nix | 3 |
4 files changed, 6 insertions, 4 deletions
diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix index 17da12f..5265e52 100644 --- a/hosts/arrakis/default.nix +++ b/hosts/arrakis/default.nix @@ -128,6 +128,7 @@ ../common/optional/services/openssh.nix ../common/optional/services/xorg.nix ../common/optional/sound.nix + ../common/optional/wdt.nix ../common/optional/zfs.nix ../common/users/nipsy ../common/users/root @@ -426,6 +427,4 @@ }; wantedBy = [ "multi-user.target" ]; }; - - systemd.watchdog.runtimeTime = "60s"; } diff --git a/hosts/common/optional/wdt.nix b/hosts/common/optional/wdt.nix new file mode 100644 index 0000000..3c3943e --- /dev/null +++ b/hosts/common/optional/wdt.nix @@ -0,0 +1,3 @@ +{ + systemd.watchdog.runtimeTime = "60s"; +} diff --git a/hosts/darkstar/default.nix b/hosts/darkstar/default.nix index b53a7d7..8471be9 100644 --- a/hosts/darkstar/default.nix +++ b/hosts/darkstar/default.nix @@ -37,6 +37,7 @@ ../common/optional/services/dhcp.nix ../common/optional/services/nsd.nix ../common/optional/services/openssh.nix + ../common/optional/wdt.nix ../common/optional/zfs.nix ../common/users/nipsy ../common/users/root diff --git a/hosts/ginaz/default.nix b/hosts/ginaz/default.nix index 932d125..ce2d8bc 100644 --- a/hosts/ginaz/default.nix +++ b/hosts/ginaz/default.nix @@ -33,6 +33,7 @@ ../common/optional/services/tlp.nix ../common/optional/services/xorg.nix ../common/optional/sound.nix + ../common/optional/wdt.nix ../common/optional/zfs.nix ../common/users/nipsy ../common/users/root @@ -97,6 +98,4 @@ }; wantedBy = [ "multi-user.target" ]; }; - - systemd.watchdog.runtimeTime = "60s"; } |