diff options
Diffstat (limited to 'nixos/modules/turris-mox-support.nix')
-rw-r--r-- | nixos/modules/turris-mox-support.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nixos/modules/turris-mox-support.nix b/nixos/modules/turris-mox-support.nix index c3fd508..b12f511 100644 --- a/nixos/modules/turris-mox-support.nix +++ b/nixos/modules/turris-mox-support.nix @@ -17,6 +17,13 @@ with lib; "moxtet" "gpio-moxtet" "turris-mox-rwtm" ]; + # Systemd seems to not handling hardware watchdog for some reason + systemd.services."nowatchdog" = { + script = "echo V >/dev/watchdog0"; + wantedBy = [ "multi-user.target" ]; + }; + + # The additional administration packages environment.systemPackages = with pkgs; [ mox-otp |