summaryrefslogtreecommitdiff
path: root/modules/system/networking
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/networking')
-rw-r--r--modules/system/networking/default.nix18
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
+ # '';
+ # };
}