aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/spt-mox.nix
blob: b223e865e5cc609d85b086abed2caf00b91a68d7 (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
{
  config,
  lib,
  pkgs,
  ...
}:
with builtins;
with lib; {
  config = {
    cynerd = {
      home-assistant = true;
      switch = {
        enable = true;
        lanAddress = "${config.cynerd.hosts.spt.mox}/24";
        lanGateway = config.cynerd.hosts.spt.omnia;
      };
      wifiAP.spt = {
        enable = true;
        qca988x = {
          interface = "wls1";
          bssids = ["04:f0:21:24:24:d2" "08:f0:21:24:24:d2"];
          channel = 7;
        };
      };
    };

    services.btrfs.autoScrub = {
      enable = true;
      fileSystems = ["/"];
    };

    networking = {
      useNetworkd = true;
      useDHCP = false;
    };
    systemd.network.networks = {
      "lan-brlan" = {
        matchConfig.Name = "lan* end0";
        networkConfig.Bridge = "brlan";
        bridgeVLANs = [
          {
            bridgeVLANConfig = {
              EgressUntagged = 1;
              PVID = 1;
            };
          }
          {bridgeVLANConfig.VLAN = 2;}
        ];
      };
    };
  };
}