summaryrefslogtreecommitdiff
path: root/host/obelix.nix
blob: c922ceaafd4fc7d78e17a918d401c3d257ff4397 (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
{ pkgs, ... }:

{
  imports = [
    ./hardware/obelix.nix
    ./software/desktop
  ];

  boot = {
    loader.grub = {
      enable  = true;
      version = 2;
      device  = "/dev/sdb";
      extraConfig = ''
        set gfxpayload=1920x1200x32
      '';
    };

    initrd.luks.devices = [ {
      name   = "root";
      device = "/dev/disk/by-uuid/6205da24-b1b2-402c-b175-4036e678dea9";
      preLVM        = true;
      allowDiscards = true;
    } ];
  };

  networking = {
    hostName = "obelix";
    firewall.enable = false;
  };

  services.xserver.videoDrivers = [ "nvidiaBeta" ];

  networking.wireguard.interfaces = {
    wg0 = {
      ips = [ "10.100.0.2/24" ];

      privateKeyFile = "/etc/wireguard/private";

      peers = [
        { # automatix
          publicKey  = "B0tkjq+5SfECKx1gWEP5JVWOIaRWL2JNE7iSpMmN4F0=";
          allowedIPs = [ "10.100.0.0/24" ];
          endpoint   = "kummerlaender.eu:54321";

          persistentKeepalive = 10;
        }
      ];
    };
  };
}