From 65f7cad03716eb9095dd5ad9b64735eeb7dc00c5 Mon Sep 17 00:00:00 2001 From: Nathan Date: Tue, 9 Sep 2025 09:04:13 -0500 Subject: [PATCH] use wifi dummy --- system-config/configuration/homebox/default.nix | 2 +- system-config/services/containers/default.nix | 2 +- .../services/containers/netbird/default.nix | 13 ++++--------- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/system-config/configuration/homebox/default.nix b/system-config/configuration/homebox/default.nix index ed7c487..8e0695d 100644 --- a/system-config/configuration/homebox/default.nix +++ b/system-config/configuration/homebox/default.nix @@ -85,7 +85,7 @@ nat = { enable = true; internalInterfaces = [ "ve-+" ]; - externalInterface = "enp6s0"; + externalInterface = "wlp7s0"; }; }; diff --git a/system-config/services/containers/default.nix b/system-config/services/containers/default.nix index 0b412a1..92d11fd 100644 --- a/system-config/services/containers/default.nix +++ b/system-config/services/containers/default.nix @@ -6,7 +6,7 @@ ./traefik ./nginx ./jellyfin - #./pihole + ./pihole ./nextcloud ./ntfy ./homeassistant diff --git a/system-config/services/containers/netbird/default.nix b/system-config/services/containers/netbird/default.nix index 58d9aab..61c17a0 100644 --- a/system-config/services/containers/netbird/default.nix +++ b/system-config/services/containers/netbird/default.nix @@ -101,8 +101,6 @@ management = { enable = true; - #package = pkgs-us.netbird; - enableNginx = true; disableAnonymousMetrics = true; @@ -232,13 +230,10 @@ ''; }; - networking = { - hosts."192.168.100.11" = [ "blunkall.us" "*.blunkall.us" ]; - firewall = { - allowedTCPPorts = [ 80 ]; - allowedUDPPorts = [ 3478 ]; - allowedUDPPortRanges = [{ from = 51100; to = 56100; }]; - }; + networking.firewall = { + allowedTCPPorts = [ 80 ]; + allowedUDPPorts = [ 3478 ]; + allowedUDPPortRanges = [{ from = 51100; to = 56100; }]; }; system.stateVersion = "25.05";