summaryrefslogtreecommitdiff
path: root/machines/dragon.nix
blob: d3a1c192ff2048bab7ac9828722ec26182affd3f (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{ config, lib, pkgs, ... }:
let
  duid = "00:01:00:01:21:a2:4e:a8:d0:bf:9c:45:a6:ec";
in
{
  imports = [
    ../config/acme-sh.nix
    ../config/mpd.nix
    ../config/borg-backup.nix
    ../config/common.nix
    ../config/users.nix
    # ../config/weechat.nix
    ../config/dns.nix
    ../config/hydra.nix
    ../config/web-server.nix
    ../config/cgit.nix
    ../config/mail-server.nix
    ../config/munin-node.nix
    ../config/munin-master.nix
    ../config/vpn-server.nix
    ../config/terraria.nix
  ];

  environment.systemPackages = with pkgs; [ ipmitool ];
  # environment.etc."dhcpcd.duid".text = duid;
  systemd.services.dhcpcd.preStart = ''
    cp ${pkgs.writeText "duid" "${duid}"} /var/db/dhcpcd/duid
  '';

  programs.mosh.enable = true;

  virtualisation.lxd.enable = true;
  #security.apparmor = {
  #  enable = true;
  #  profiles = [
  #    "${pkgs.lxc}/etc/apparmor.d/usr.bin.lxc-star" 
  #    "${pkgs.lxc}/etc/apparmor.d/lxc-containers"
  #  ];
  #  packages = [ pkgs.lxc pkgs.apparmor-parser ];
  #};

  # containers.kick = {
  #   autoStart = true;
  #   hostBridge = "br0";
  #   privateNetwork = true;
  #   config = { config, pkgs, ... }: {
  #     system.activationScripts = {
  #       resolvconf = {
  #         text = ''
  #           chmod +w /etc/resolv.conf
  #           echo nameserver 2001:4860:4860::8888 >> /etc/resolv.conf
  #           chmod -w /etc/resolv.conf
  #         '';
  #       };
  #     };
  #     networking.firewall.allowedTCPPorts = [ 80 443 ];
  #     networking.nameservers = [ "2001:4860:4860::8888" "2001:4860:4860::8844" ];
  #     services.nginx = {
  #       enable = true;
  #       virtualHosts = {
  #         "kick.orbekk.no" = {
  #           enableACME = true;  
  #           addSSL = true;
  #         };
  #       };
  #     };
  #     environment.systemPackages = [
  #       pkgs.simp_le pkgs.certbot
  #     ];
  #     # nixpkgs.config.packageOverrides = pkgs: {
  #     #   simp_le = pkgs.stdenv.mkDerivation {
  #     #     name = "simp_le";
  #     #     nativeBuildInputs = [ pkgs.makeWrapper ];
  #     #     buildCommand = ''
  #     #       mkdir -p $out/bin
  #     #       makeWrapper "${pkgs.simp_le}/bin/simp_le" $out/bin/simp_le \
  #     #         --add-flags "--server https://api.buypass.com/acme/directory" \
  #     #         --add-flags "--email kj@orbekk.com" \
  #     #         --add-flags "--tos_sha256 07c2ac41aff33fe06e27447ea592c503f22967fd43b0e8500cbc8452f28a4bf1"
  #     #     '';  
  #     #   };
  #     # };
  #   };
  # };

  boot = {
    kernelParams = [ "console=tty0" ''console="ttyS0,115200n8"'' ];
    kernel.sysctl = {
      "net.ipv4.conf.all.forwarding" = true;
      "net.ipv6.conf.all.forwarding" = true;
      "net.ipv6.conf.br0.accept_ra" = 2;
    };
    
    loader.grub.extraConfig = ''
      GRUB_TERMINAL="serial"
      GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1"
      serial --speed 115200 --unit=0
      terminal_input serial
      terminal_output serial
    '';
    loader.grub.enable = true;
    loader.grub.version = 2;
    loader.grub.devices = ["/dev/sda" "/dev/sdb"];
  };
  
  networking = {
    hostName = lib.mkForce "dragon";

    firewall.allowPing = true;
    firewall.checkReversePath = "loose";
    firewall.logRefusedConnections = false;

    bridges = {
      br0 = {
        interfaces = ["eno2"];
      };
    };

    dhcpcd.extraConfig = ''
    duid
    ipv6ra_noautoconf
    debug
    '';

    # interfaces.br0.ip6 = [
    #   # { address = "2001:470:8e2e:20:eca0:41ff:feef:92"; prefixLength = 64; }
    #   { address = "2001:470:8e2e:20::d"; prefixLength = 64; }
    # ];

    # Managed with dhcpv6 now.
    # localCommands = ''
    #   sleep 10
    #   echo setting up routes
    #   ip -6 addr add 2001:470:8e2e:20::d/64 dev br0 || true
    #   ip -6 route replace default via fe80::822a:a8ff:fe4d:f5d6 dev br0 metric 0 src 2001:470:8e2e:20::d || true
    #   ip route replace default via 10.0.20.1 dev br0 metric 0 || true
    # '';
  };

  # Required to enable password authentication for one user.
  security.pam.services.sshd.unixAuth = lib.mkForce true;
  services = {
    openssh = {
      enable = lib.mkDefault true;
      passwordAuthentication = false;
      extraConfig = ''
        Match User readonly
	PasswordAuthentication yes
      '';
    };
  };

  fileSystems = {
    "/storage" = {
      device = "/dev/sda3";
      fsType = "btrfs";
      options = [ "subvol=storage" ];
    };
    "/staging" = {
      device = "/dev/sda3";
      fsType = "btrfs";
      options = [ "subvol=staging" ];
    };
  };

  users.users.breakds = {
    uid = 1101;
    shell = pkgs.bashInteractive;
    home = "/home/breakds";
    createHome = false;
    isNormalUser = true;
    description = "Break Yang";
    openssh.authorizedKeys.keyFiles = [ ../data/break_rsa.pub ];
  };

  system.stateVersion = lib.mkForce "17.09";
}