aboutsummaryrefslogtreecommitdiff
path: root/nixos/configurations/spt-mox2.nix
blob: c713477201fcfd573c9c3d54641a6c19de405943 (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, ...}: {
  turris.board = "mox";
  deploy = {
    enable = true;
    ssh.host = "mox2.spt";
  };

  cynerd = {
    switch = {
      enable = true;
      lanAddress = "${config.cynerd.hosts.spt.mox2}/24";
      lanGateway = config.cynerd.hosts.spt.omnia;
    };
    wifiAP.spt = {
      enable = true;
      qca988x = {
        interface = "wlp1s0";
        bssids = ["04:f0:21:45:d3:47" "08:f0:21:45:d3:47"];
        channel = 1;
      };
    };
  };

  services.journald.extraConfig = ''
    SystemMaxUse=512M
  '';

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

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