From 0cf4733327af74fce4302e4417cab16d7932cd92 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Mon, 4 Sep 2023 22:19:22 +0100 Subject: [PATCH] add placeholders for missing module docs --- modules/mount/default.nix | 4 ++++ modules/watchdog/default.nix | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/modules/mount/default.nix b/modules/mount/default.nix index 31d5c450..310f8925 100644 --- a/modules/mount/default.nix +++ b/modules/mount/default.nix @@ -1,3 +1,7 @@ +## Mount +## +## Mount filesystems + { lib, pkgs, config, ...}: let diff --git a/modules/watchdog/default.nix b/modules/watchdog/default.nix index 738c6686..d947954b 100644 --- a/modules/watchdog/default.nix +++ b/modules/watchdog/default.nix @@ -1,3 +1,9 @@ +## Watchdog +## +## Enable hardware watchdog (for devices that support one) and +## feed it by checking the health of specified critical services. +## If the watchdog feeder stops, the device will reboot. + { lib, pkgs, config, ...}: let inherit (lib) mkOption types;