aboutsummaryrefslogtreecommitdiff
path: root/nixos/routers/wifi-spt.nix
blob: 1cbb5673b084b6bdcafe8475fb0d8fe771376dd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cnf = config.cynerd.wifiAP.spt;

  wOptions = card: channelDefault: {
    interface = mkOption {
      type = with types; nullOr str;
      default = null;
      description = "Specify interface for ${card}";
    };
    channel = mkOption {
      type = types.ints.positive;
      default = channelDefault;
      description = "Channel to be used for ${card}";
    };
  };
in {
  options = {
    cynerd.wifiAP.spt = {
      enable = mkEnableOption "Enable Wi-Fi Access Point support";
      ar9287 = wOptions "Qualcom Atheros AR9287" 7;
      qca988x = wOptions "Qualcom Atheros QCA988x" 36;
    };
  };

  config = mkIf cnf.enable {
    networking.wirelessAP = {
      enable = true;
      environmentFile = "/run/secrets/hostapd.env";
      interfaces =
        (optionalAttrs (cnf.ar9287.interface != null) {
          "${cnf.ar9287.interface}" =
            wifiAP.qualcomAtherosAR9287 {
              channel = cnf.ar9287.channel;
            }
            // {
              bssid = "@BSSID_AR9287_0@";
              ssid = "TurrisRules";
              wpa = 2;
              wpaPassphrase = "@PASS_TURRIS_RULES@";
              bridge = "brlan";
              bss = {
                "${cnf.ar9287.interface}.guest" = {
                  bssid = "@BSSID_AR9287_1@";
                  ssid = "Kocovi";
                  wpa = 2;
                  wpaPassphrase = "@PASS_KOCOVI@";
                  bridge = "brguest";
                };
              };
            };
        })
        // (optionalAttrs (cnf.qca988x.interface != null) {
          "${cnf.qca988x.interface}" =
            wifiAP.qualcomAtherosQCA988x {
              channel = cnf.qca988x.channel;
            }
            // {
              bssid = "@BSSID_QCA988X_0@";
              countryCode = "CZ";
              ssid = "TurrisRules5";
              wpa = 2;
              wpaPassphrase = "@PASS_TURRIS_RULES@";
              bridge = "brlan";
              bss = {
                "${cnf.qca988x.interface}.guest" = {
                  bssid = "@BSSID_QCA988X_1@";
                  ssid = "Kocovi";
                  wpa = 2;
                  wpaPassphrase = "@PASS_KOCOVI@";
                  bridge = "brguest";
                };
              };
            };
        });
    };
  };
}