diff --git a/modules/hostname.nix b/modules/hostname.nix index a2c17ea..d5cd962 100644 --- a/modules/hostname.nix +++ b/modules/hostname.nix @@ -5,6 +5,10 @@ let in { options = { hostname = mkOption { + description = '' + System hostname of the device, as returned by gethostname(2). May or + may not correspond to any name it's reachable at on any network. + ''; default = "liminix"; type = types.nonEmptyStr; };