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"; + }; + }; + }; + }; + }; +}