diff options
author | Rory& <root@rory.gay> | 2024-11-04 03:06:47 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-11-04 03:06:47 +0100 |
commit | 887b66bee192b8005f97ad724232b12a21859d02 (patch) | |
tree | faec6015b6dd78a9fa55c54bea21b3a6b2837842 /host | |
parent | Clean up resolvconf (diff) | |
download | Rory-Open-Architecture-887b66bee192b8005f97ad724232b12a21859d02.tar.xz |
Fix resolvconf BS
Diffstat (limited to 'host')
-rw-r--r-- | host/Rory-desktop/configuration.nix | 8 | ||||
-rwxr-xr-x | host/Rory-nginx/configuration.nix | 2 |
2 files changed, 2 insertions, 8 deletions
diff --git a/host/Rory-desktop/configuration.nix b/host/Rory-desktop/configuration.nix index 983d771..f0fb7a7 100644 --- a/host/Rory-desktop/configuration.nix +++ b/host/Rory-desktop/configuration.nix @@ -15,7 +15,6 @@ args@{ ../../modules/packages/vim.nix # ../../modules/environments/home.nix ../../modules/software-templates/profilers.nix - ../../modules/packages/overlays/openvpn.nix # Temporary: Fix a build failure ./postgres.nix ./nginx.nix @@ -257,13 +256,8 @@ args@{ hardware = { pulseaudio.enable = false; }; + programs.dconf.enable = true; - environment.etc."resolv.conf".text = '' - nameserver 8.8.8.8 - nameserver 8.4.4.8 - nameserver 1.1.1.1 - nameserver 1.0.0.1 - ''; #networking.wireguard.interfaces = { # wg-KP-Ran = { diff --git a/host/Rory-nginx/configuration.nix b/host/Rory-nginx/configuration.nix index 7b9132b..bac5644 100755 --- a/host/Rory-nginx/configuration.nix +++ b/host/Rory-nginx/configuration.nix @@ -54,7 +54,7 @@ enableIPv6 = false; }; enableIPv6 = lib.mkForce false; - nameservers = lib.mkOverride [ "192.168.1.1" ]; + nameservers = lib.mkForce [ "192.168.1.1" ]; }; monitoring = { |