aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/dean.nix
blob: aef3c04e27862c109606d643884059212995d408 (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
{ config, lib, pkgs, ... }:

with lib;

{

  config = {
    cynerd = {
      openvpn = {
        oldpersonal = true;
      };
    };

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

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

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

  };

}