From b8dde2846c381e6b0bde8fbaeb860e1f37b27320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Sun, 20 Jul 2025 16:00:28 +0200 Subject: [PATCH] fix: WLAN1 password was not set correctly --- SwarselSystems.org | 2 +- modules/nixos/client/network.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SwarselSystems.org b/SwarselSystems.org index 86d4d15..c43b236 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -4874,7 +4874,7 @@ Here I only enable =networkmanager= and a few default networks. The rest of the wifi-security = { auth-alg = "open"; key-mgmt = "wpa-psk"; - psk = "WLAN1_PW"; + psk = "$WLAN1_PW"; }; }; diff --git a/modules/nixos/client/network.nix b/modules/nixos/client/network.nix index 27809ab..8f7ffc3 100644 --- a/modules/nixos/client/network.nix +++ b/modules/nixos/client/network.nix @@ -118,7 +118,7 @@ in wifi-security = { auth-alg = "open"; key-mgmt = "wpa-psk"; - psk = "WLAN1_PW"; + psk = "$WLAN1_PW"; }; };