Merge pull request #100160 from primeos/nixos-better-domain-example

nixos/networking: Switch to home.arpa as an example for the domain
This commit is contained in:
Martin Weinelt 2020-10-10 19:27:04 +02:00 committed by GitHub
commit 93b593ae53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -470,7 +470,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 +479,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.