aboutsummaryrefslogtreecommitdiff
path: root/nixos/routers/wifi-spt.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-01-27 15:12:06 +0100
committerKarel Kočí <cynerd@email.cz>2023-01-27 15:12:06 +0100
commit7ad7623287c6492540c2ca55dd167f35e120e55c (patch)
tree8444d3b96008fc9506ae9f1b2e64d14938341146 /nixos/routers/wifi-spt.nix
parent8e6e3d387a6f9f622f1d84c444924d61069f7af3 (diff)
downloadnixos-personal-7ad7623287c6492540c2ca55dd167f35e120e55c.tar.gz
nixos-personal-7ad7623287c6492540c2ca55dd167f35e120e55c.tar.bz2
nixos-personal-7ad7623287c6492540c2ca55dd167f35e120e55c.zip
nixos/routers/wifi: update to changes in hostapd
Diffstat (limited to 'nixos/routers/wifi-spt.nix')
-rw-r--r--nixos/routers/wifi-spt.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/nixos/routers/wifi-spt.nix b/nixos/routers/wifi-spt.nix
index 1cbb567..a7b2697 100644
--- a/nixos/routers/wifi-spt.nix
+++ b/nixos/routers/wifi-spt.nix
@@ -29,16 +29,14 @@ in {
};
config = mkIf cnf.enable {
- networking.wirelessAP = {
- enable = true;
+ services.hostapd = {
+ countryCode = "CZ";
environmentFile = "/run/secrets/hostapd.env";
interfaces =
(optionalAttrs (cnf.ar9287.interface != null) {
"${cnf.ar9287.interface}" =
- wifiAP.qualcomAtherosAR9287 {
+ hostapd.qualcomAtherosAR9287 {
channel = cnf.ar9287.channel;
- }
- // {
bssid = "@BSSID_AR9287_0@";
ssid = "TurrisRules";
wpa = 2;
@@ -57,12 +55,9 @@ in {
})
// (optionalAttrs (cnf.qca988x.interface != null) {
"${cnf.qca988x.interface}" =
- wifiAP.qualcomAtherosQCA988x {
+ hostapd.qualcomAtherosQCA988x {
channel = cnf.qca988x.channel;
- }
- // {
bssid = "@BSSID_QCA988X_0@";
- countryCode = "CZ";
ssid = "TurrisRules5";
wpa = 2;
wpaPassphrase = "@PASS_TURRIS_RULES@";