aboutsummaryrefslogtreecommitdiff
path: root/nixos/configurations/adm-omnia2.nix
blob: 19ee446af3730ef98d4ec43db27964d3a47f55fb (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
{config, ...}: {
  turris.board = "omnia";
  deploy = {
    enable = true;
    ssh.host = "omnia2.adm";
  };

  cynerd = {
    switch = {
      enable = true;
      lanAddress = "${config.cynerd.hosts.adm.omnia2}/24";
      lanGateway = config.cynerd.hosts.adm.omnia;
    };
    wifiAP.adm = {
      enable = true;
      ar9287 = {
        interface = "wlp1s0";
        bssids = ["12:f0:21:23:2b:00" "12:f0:21:23:2b:01" "12:f0:21:23:2b:02"];
        channel = 11;
      };
      qca988x = {
        interface = "wlp2s0";
        bssids = ["12:f0:21:23:2b:03" "12:f0:21:23:2b:04" "12:f0:21:23:2b:05"];
        channel = 36;
      };
    };
  };

  services.journald.extraConfig = ''
    SystemMaxUse=8G
  '';

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

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