From 8cb0e39272260ab54b9fdf2e195b193deedbf0ac Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 25 Apr 2026 08:14:18 -0500 Subject: [PATCH] hotspot test --- modules/features/hotspot.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/modules/features/hotspot.nix b/modules/features/hotspot.nix index 4f83a9b..ec32b38 100644 --- a/modules/features/hotspot.nix +++ b/modules/features/hotspot.nix @@ -9,7 +9,7 @@ services.dnsmasq.enable = true; - /*sops.secrets."hotspotPass".sopsFile = ./secrets.yaml; + sops.secrets."hotspotPass".sopsFile = ./secrets.yaml; services.hostapd = { enable = true; @@ -19,8 +19,15 @@ ssid = "laptopHotspot"; authentication.saePasswords = [{ passwordFile = "${config.sops.secrets."hotspotPass".path}"; }]; }; - }; - };*/ + countryCode = "US"; + + wifi4 = { + enable = true; + }; + }; + }; + + networking.networkmanager.unmanaged = [ "wlo1" ]; }; }