From c1314e711bb348641b09b8f7293f50b8d9fd095c Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 5 Sep 2024 06:47:56 -0700 Subject: Bump --- modules/system/networking/default.nix | 18 ++++++------------ 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,9 +1,3 @@ -{ - lib, - pkgs, - config, - ... -}: { imports = [ ./firewall @@ -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; -- cgit v1.2.3