From 04a23aabee712b2a610b4461248c673ff525afa9 Mon Sep 17 00:00:00 2001 From: Mitsuo Makuda Date: Thu, 13 Nov 2025 23:00:14 +0000 Subject: [PATCH] Edited defaultGateway to be correct according to the documentation. --- nixos/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 1469763..8ce3c0f 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -40,7 +40,8 @@ # prefixLength = 24; # } # ]; - ipv4.gateway = "192.168.1.1"; + defaultGateway.address = "192.168.1.1"; + defaultGateway.interface = "wlan0"; nameservers = [ "1.1.1.1" "8.8.8.8" ]; };