aboutsummaryrefslogtreecommitdiff
path: root/nixos/routers/wifi-spt.nix
blob: e726b847d67cb818eace258d62d14b65fc1f520a (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
84
85
86
87
88
89
{
  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 {
    services.hostapd = {
      #enable = true;
      #countryCode = "CZ";
      #interfaces =
      #  (optionalAttrs (cnf.ar9287.interface != null) {
      #    "${cnf.ar9287.interface}" = hostapd.qualcomAtherosAR9287 {
      #      inherit (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}" = hostapd.qualcomAtherosQCA988x {
      #      inherit (cnf.qca988x) channel;
      #      bssid = "@BSSID_QCA988X_0@";
      #      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";
      #        };
      #      };
      #    };
      #  });
    };
    networking.bridges = {
      brlan.interfaces = filter (v: v != null) [
        cnf.ar9287.interface
        cnf.qca988x.interface
      ];
      brguest.interfaces =
        (optionals (cnf.ar9287.interface != null) [
          "${cnf.ar9287.interface}.guest"
        ])
        ++ (optionals (cnf.qca988x.interface != null) [
          "${cnf.qca988x.interface}.guest"
        ]);
    };
  };
}