summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-10-11 00:27:21 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-10-11 00:27:21 +0200
commitaabcf2d8f52c68ad37d72bf80d90608831450af5 (patch)
tree216730816f2b6e239d1d7c525dc4edb761222fba /nixos/modules
parent338b25697c952b17ef9b012cbe068f2d0b8fc4b3 (diff)
parent2085a254251d722a739ba90a635b3d02d7dfb58d (diff)
Merge branch 'master' into staging-next
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/tasks/network-interfaces.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix
index d369aab54571..e5bd57753683 100644
--- a/nixos/modules/tasks/network-interfaces.nix
+++ b/nixos/modules/tasks/network-interfaces.nix
@@ -391,6 +391,10 @@ in
end with a letter or digit, and have as interior characters only
letters, digits, and hyphen. The maximum length is 63 characters.
Additionally it is recommended to only use lower-case characters.
+ If (e.g. for legacy reasons) a FQDN is required as the Linux kernel
+ network node hostname (uname --nodename) the option
+ boot.kernel.sysctl."kernel.hostname" can be used as a workaround (but
+ the 64 character limit still applies).
'';
};
@@ -470,7 +474,7 @@ in
networking.search = mkOption {
default = [];
- example = [ "example.com" "local.domain" ];
+ example = [ "example.com" "home.arpa" ];
type = types.listOf types.str;
description = ''
The list of search paths used when resolving domain names.
@@ -479,7 +483,7 @@ in
networking.domain = mkOption {
default = null;
- example = "home";
+ example = "home.arpa";
type = types.nullOr types.str;
description = ''
The domain. It can be left empty if it is auto-detected through DHCP.