aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/spt-omnia.nix
blob: c0a6ec2d01bbb32b7d5e7e8dc515eb1df3afa183 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; {
  config = {
    cynerd = {
      router = {
        enable = true;
        wan = "pppoe-wan";
        lanIP = config.cynerd.hosts.spt.omnia;
      };
      wifiAP.spt = {
        enable = true;
        ar9287 = {
          interface = "wlp3s0";
          bssids = ["04:f0:21:23:16:64" "08:f0:21:23:16:64"];
          channel = 13;
        };
        qca988x = {
          interface = "wlp2s0";
          bssids = ["04:f0:21:24:21:93" "08:f0:21:24:21:93"];
          channel = 36;
        };
      };
      openvpn.oldpersonal = true;
      monitoring.speedtest = true;
    };

    networking.useDHCP = false;
    systemd.network = {
      netdevs = {
        "end2.848" = {
          netdevConfig = {
            Kind = "vlan";
            Name = "end2.848";
          };
          vlanConfig.Id = 848;
        };
      };
      networks = {
        "end2" = {
          matchConfig.Name = "end2";
          networkConfig.VLAN = ["end2.848"];
        };
        "end2.848" = {
          matchConfig.Name = "end2.848";
          networkConfig.BindCarrier = "end2";
        };
        "pppoe-wan" = {
          matchConfig.Name = "pppoe-wan";
          networkConfig = {
            BindCarrier = "end2.848";
            DHCP = "ipv6";
            IPv6AcceptRA = "yes";
            DHCPPrefixDelegation = "yes";
          };
          dhcpPrefixDelegationConfig = {
            UplinkInterface = ":self";
            SubnetId = 0;
            Announce = "no";
          };
          linkConfig.RequiredForOnline = "routable";
        };
        "lan-brlan" = {
          matchConfig.Name = "lan*";
          networkConfig.Bridge = "brlan";
          #bridgeVLANs = [
          #  {
          #    bridgeVLANConfig = {
          #      EgressUntagged = 1;
          #      PVID = 1;
          #    };
          #  }
          #  {bridgeVLANConfig.VLAN = 2;}
          #];
        };
      };
    };

    services.pppd = {
      enable = true;
      peers."wan".config = ''
        plugin pppoe.so end2.848
        ifname pppoe-wan
        lcp-echo-interval 1
        lcp-echo-failure 5
        lcp-echo-adaptive
        +ipv6
        defaultroute
        defaultroute6
        usepeerdns
        maxfail 1
        user metronet
        password metronet
      '';
    };
    systemd.services."pppd-wan".after = ["sys-subsystem-net-devices-end2.848.device"];

    services.syncthing = {
      enable = true;
      openDefaultPorts = true;

      overrideDevices = false;
      overrideFolders = false;

      dataDir = "/data";
    };
  };
}