diff options
| author | Fuwn <[email protected]> | 2024-09-05 06:47:56 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-05 06:47:56 -0700 |
| commit | c1314e711bb348641b09b8f7293f50b8d9fd095c (patch) | |
| tree | 066c536da0d61345ba2e31653f8cd409be9f371e /modules/system | |
| parent | Bump: resolve (diff) | |
| download | nixos-config-c1314e711bb348641b09b8f7293f50b8d9fd095c.tar.xz nixos-config-c1314e711bb348641b09b8f7293f50b8d9fd095c.zip | |
Bump
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/networking/default.nix | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/modules/system/networking/default.nix b/modules/system/networking/default.nix index 61aabdd..6f25d7b 100644 --- a/modules/system/networking/default.nix +++ b/modules/system/networking/default.nix @@ -1,10 +1,4 @@ { - lib, - pkgs, - config, - ... -}: -{ imports = [ ./firewall ./vpn @@ -36,10 +30,10 @@ ]; }; - environment.etc."resolv.conf" = lib.mkForce { - source = pkgs.writeText "resolv.conf" '' - ${lib.concatStringsSep "\n" (map (ns: "nameserver ${ns}") config.networking.nameservers)} - options edns0 - ''; - }; + # environment.etc."resolv.conf" = lib.mkForce { + # source = pkgs.writeText "resolv.conf" '' + # ${lib.concatStringsSep "\n" (map (ns: "nameserver ${ns}") config.networking.nameservers)} + # options edns0 + # ''; + # }; } |