describe hostname option

module-based-network
Daniel Barlow 2023-08-12 21:13:22 +01:00
parent bd908307c4
commit 1b8536ff81
1 changed files with 4 additions and 0 deletions

View File

@ -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;
};