21 lines
374 B
Nix
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|