summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorscouckel <james.krinsky@gmail.com>2026-01-25 11:42:17 -0600
committerscouckel <james.krinsky@gmail.com>2026-01-25 11:42:17 -0600
commit8f3848f4d41f9184657048ddecbe052b22d26874 (patch)
tree690b7e7a345eb41eade0fd118e7bd821ac4c15a5 /hosts
parentc1e1db1d3dcbc0437d3e740c9a63cd9838754cec (diff)
big changes
Diffstat (limited to 'hosts')
-rw-r--r--hosts/tiamat/configuration.nix4
-rw-r--r--hosts/vecna/configuration.nix8
2 files changed, 5 insertions, 7 deletions
diff --git a/hosts/tiamat/configuration.nix b/hosts/tiamat/configuration.nix
index cce4dfb..9f2d780 100644
--- a/hosts/tiamat/configuration.nix
+++ b/hosts/tiamat/configuration.nix
@@ -38,7 +38,7 @@
system.name = "tiamat";
networking.hostName = "tiamat";
- networking.nameservers = [ "1.1.1.1" "9.9.9.9" ];
+ networking.nameservers = [ "100.100.100.100" "1.1.1.1" "9.9.9.9" ];
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
@@ -87,7 +87,7 @@
users.users.jck = {
isNormalUser = true;
description = "jck";
- extraGroups = [ "networkmanager" "wheel" "nordvpn" ];
+ extraGroups = [ "networkmanager" "wheel" ];
};
nixpkgs.config.allowUnfree = true;
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";
}