From 0aa7e8c0b7a20a8013ce54325c23124e2585df05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 1 Feb 2025 12:43:03 +0100 Subject: [PATCH] Add hostapd file for gunter --- hosts/gunter/hostapd.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hosts/gunter/hostapd.nix diff --git a/hosts/gunter/hostapd.nix b/hosts/gunter/hostapd.nix new file mode 100644 index 0000000..3d88cf6 --- /dev/null +++ b/hosts/gunter/hostapd.nix @@ -0,0 +1,20 @@ +{ ... }: +{ + services.hostapd = { + enable = true; + radios = { + wlp13s0 = { + countryCode = "NO"; + wifi6.enable = true; + networks.wlp13s0 = { + ssid = "TESTLOL"; + band = "5g"; + authentication = { + wpaPassword = "lol passord"; + mode = "wpa2-sha256"; + }; + }; + }; + }; + }; +}