diff options
| -rw-r--r-- | modules/system/networking/default.nix | 18 | ||||
| -rw-r--r-- | modules/virtualisation/docker.nix | 2 |
2 files changed, 7 insertions, 13 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 + # ''; + # }; } diff --git a/modules/virtualisation/docker.nix b/modules/virtualisation/docker.nix index 570957a..ab19b8e 100644 --- a/modules/virtualisation/docker.nix +++ b/modules/virtualisation/docker.nix @@ -2,7 +2,7 @@ { virtualisation.docker = { enable = true; - storageDriver = "btrfs"; + storageDriver = "overlay2"; enableOnBoot = false; liveRestore = true; enableNvidia = lib.mkForce true; |