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

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

  boot = {
    loader = {
      systemd-boot = {
        enable = true;
        configurationLimit = 3;
      };
      efi.canTouchEfiVariables = true;
    };

    initrd.luks.devices = {
      encrypted = {
        device = "/dev/nvme0n1p5";
        preLVM        = true;
        allowDiscards = true;
      };
    };
  };

  networking = {
    hostName = "hephaestus";
    firewall.enable = false;
    networkmanager.enable = true;
  };

  services.xserver = {
    videoDrivers = [ "nvidia" ];
  };

  hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11;

  hardware.bluetooth.enable = true;
  services.blueman.enable = true;

  services.minidlna = {
    enable = true;
    mediaDirs = ["V,/mnt/share/"];
  };

  virtualisation.docker = {
    enable = true;
    enableNvidia = true;
  };
  users.users.common.extraGroups = [ "docker" ];

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

      privateKeyFile = "/etc/wireguard/private";

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

          persistentKeepalive = 10;
        }
      ];
    };
  };

  console.earlySetup = true;

  system.stateVersion = "21.05";
}