From 239225c2684dd558861248f06b524f717791616a Mon Sep 17 00:00:00 2001 From: Mitsuo Makuda Date: Thu, 13 Nov 2025 22:57:08 +0000 Subject: [PATCH] Commented out local static IP due to evaluation error. --- nixos/configuration.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index d26d0e0..1469763 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -34,12 +34,12 @@ hostName = "persephone"; networkmanager.enable = true; interfaces.wlan0.matchConfig.MACAddress = "ca:12:ab:3c:d5:a9"; - interfaces.wlan0.ipv4.addresses = [ - { - address = "192.168.1.100"; - prefixLength = 24; - } - ]; + # interfaces.wlan0.ipv4.addresses = [ + # { + # address = "192.168.1.100"; + # prefixLength = 24; + # } + # ]; ipv4.gateway = "192.168.1.1"; nameservers = [ "1.1.1.1" "8.8.8.8" ]; };