diff options
Diffstat (limited to 'hosts/vecna')
| -rw-r--r-- | hosts/vecna/configuration.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hosts/vecna/configuration.nix b/hosts/vecna/configuration.nix index 08012df..3284a04 100644 --- a/hosts/vecna/configuration.nix +++ b/hosts/vecna/configuration.nix @@ -57,9 +57,10 @@ plugins = with pkgs; [ networkmanager-openvpn ]; + dns = "none"; }; - networking.nameservers = [ "1.1.1.1" "9.9.9.9" ]; + networking.nameservers = [ "100.100.100.100" "1.1.1.1" "9.9.9.9" ]; # localization time.timeZone = "US/Central"; @@ -84,7 +85,7 @@ users.users.jck = { isNormalUser = true; description = "jck"; - extraGroups = [ "networkmanager" "wheel" "nordvpn" ]; + extraGroups = [ "networkmanager" "wheel" ]; }; nixpkgs.config.allowUnfree = true; @@ -125,9 +126,6 @@ # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. # networking.firewall.enable = false; - networking.firewall.checkReversePath = false; - networking.firewall.allowedTCPPorts = [ 443 ]; - networking.firewall.allowedUDPPorts = [ 1194 ]; system.stateVersion = "25.05"; } |
