aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/dean.nix
blob: 0a97e332755a5a70d0baf95251f2f96fc4914dec (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
{pkgs, ...}: {
  cynerd = {
    openvpn = {
      oldpersonal = true;
    };
    monitoring.speedtest = true;
  };

  networking = {
    bridges = {
      brlan = {
        interfaces = [
          "eth0"
          "lan1"
          "lan2"
          "lan3"
          "lan4"
        ];
      };
    };
    dhcpcd.allowInterfaces = ["brlan"];
  };

  swapDevices = [
    {
      device = "/var/swap";
      priority = 1;
    }
  ];

  environment.systemPackages = with pkgs; [
    #openocd
    tio
  ];

  # TODO: ubootTools build is broken!
  firmware.environment.enable = false;
}