nixos/hosts/gunter/hostapd.nix
Torjus Håkestad 0aa7e8c0b7
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m52s
Periodic flake update / flake-update (push) Successful in 1m17s
Add hostapd file for gunter
2025-02-01 12:43:08 +01:00

21 lines
374 B
Nix

{ ... }:
{
services.hostapd = {
enable = true;
radios = {
wlp13s0 = {
countryCode = "NO";
wifi6.enable = true;
networks.wlp13s0 = {
ssid = "TESTLOL";
band = "5g";
authentication = {
wpaPassword = "lol passord";
mode = "wpa2-sha256";
};
};
};
};
};
}