Home

infra @9e9d01d3a7a385ef214288b72455566d67ec9155 - refs - log -
-
https://git.jolheiser.com/infra.git
dragonwell flake
infra / dragonwell / default.nix
- raw -
 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
{ jolheiser, ... }:
{
  imports =
    (map (name: ./services + "/${name}") (builtins.attrNames (builtins.readDir ./services)))
    ++ [ ./hardware.nix ];

  boot.tmp.cleanOnBoot = true;
  zramSwap.enable = true;

  networking = {
    hostName = "dragonwell";

    firewall = {
      enable = true;
      allowedTCPPorts = [
        80
        443
        6697
        8448
        8449
      ];
    };
  };

  services = {
    openssh.enable = true;
    tailscale.enable = true;
    fail2ban.enable = true;
  };

  users.users = {
    "${jolheiser.username}" = {
      extraGroups = [
        "wheel"
        "docker"
        "storage"
      ];
      isNormalUser = true;
      openssh.authorizedKeys.keys = [ jolheiser.sshKey ];
    };
    "root".openssh.authorizedKeys.keys = [ jolheiser.sshKey ];
  };

  nix = {
    gc = {
      automatic = true;
      randomizedDelaySec = "15m";
    };
    optimise.automatic = true;
    settings.experimental-features = [
      "flakes"
      "nix-command"
    ];
  };

  system.stateVersion = "22.11";
}