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

nixos/networking: Switch to home.arpa as an example for the domain
wip/yesman
Martin Weinelt 4 years ago committed by GitHub
commit 93b593ae53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      nixos/modules/tasks/network-interfaces.nix

@ -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.

Loading…
Cancel
Save