summary refs log tree commit diff
path: root/nixos/modules/config/resolvconf.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2020-02-05 00:28:32 +0100
committerSilvan Mosberger <contact@infinisil.com>2020-02-05 00:28:32 +0100
commit97ff64e35145c9365fdaf9b1d3729614d4205cae (patch)
tree7f0a7f00f2867693f9d2b17a4a697b830eaa0cb4 /nixos/modules/config/resolvconf.nix
parent9f64b847391b66d1343bc1439e5544ab42862893 (diff)
downloadnixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.tar
nixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.tar.gz
nixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.tar.bz2
nixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.tar.lz
nixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.tar.xz
nixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.tar.zst
nixpkgs-97ff64e35145c9365fdaf9b1d3729614d4205cae.zip
nixos/resolvconf: Remove useHostResolvConf option
Never had any effect
Diffstat (limited to 'nixos/modules/config/resolvconf.nix')
-rw-r--r--nixos/modules/config/resolvconf.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/nixos/modules/config/resolvconf.nix b/nixos/modules/config/resolvconf.nix
index 7d2f252a888..cc202bca6c4 100644
--- a/nixos/modules/config/resolvconf.nix
+++ b/nixos/modules/config/resolvconf.nix
@@ -38,6 +38,7 @@ in
     (mkRenamedOptionModule [ "networking" "dnsExtensionMechanism" ] [ "networking" "resolvconf" "dnsExtensionMechanism" ])
     (mkRenamedOptionModule [ "networking" "extraResolvconfConf" ] [ "networking" "resolvconf" "extraConfig" ])
     (mkRenamedOptionModule [ "networking" "resolvconfOptions" ] [ "networking" "resolvconf" "extraOptions" ])
+    (mkRemovedOptionModule [ "networking" "resolvconf" "useHostResolvConf" ] "This option was never used for anything anyways")
   ];
 
   options = {
@@ -53,15 +54,6 @@ in
         '';
       };
 
-      useHostResolvConf = mkOption {
-        type = types.bool;
-        default = false;
-        description = ''
-          In containers, whether to use the
-          <filename>resolv.conf</filename> supplied by the host.
-        '';
-      };
-
       dnsSingleRequest = lib.mkOption {
         type = types.bool;
         default = false;