summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-05 06:47:56 -0700
committerFuwn <[email protected]>2024-09-05 06:47:56 -0700
commitc1314e711bb348641b09b8f7293f50b8d9fd095c (patch)
tree066c536da0d61345ba2e31653f8cd409be9f371e
parentBump: resolve (diff)
downloadnixos-config-c1314e711bb348641b09b8f7293f50b8d9fd095c.tar.xz
nixos-config-c1314e711bb348641b09b8f7293f50b8d9fd095c.zip
Bump
-rw-r--r--modules/system/networking/default.nix18
-rw-r--r--modules/virtualisation/docker.nix2
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;