aboutsummaryrefslogtreecommitdiff
path: root/systems/x86_64-linux/copenhagen/default.nix
blob: d0659c6e2db8f6bc7647fd6a164d7703e646f444 (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
{ lib, pkgs, namespace, ... }:

with lib; with lib.${namespace}; {
  imports = [
    ./hardware.nix
    ./network.nix
  ];

  cxl = {
    system = {
      hostname = "copenhagen";
      id = "a50062ff";
      
      impermanence.enable = true;
      impermanence.home.enable = true;
    };

    suites.common.enable = true;

    services = {
      ssh = {
        enable = true;
        ports = [ 22 42069 ];
      };

      web = {
        cxl.sh.enable = true;
        personal.enable = true;
        images.enable = true;
        stargazers.enable = false;
        status.enable = true;
      };

      minecraft = {
        beta = {
          enable = true;
          port = 25565;
        };

        tower = {
          enable = true;
          port = 25567;
        };

        stargazers = {
          enable = true;
          port = 25566;
          start = false;
        };

        zenith = {
          enable = true;
          port = 25569;
        };
      };

      satisfactory = {
        enable = true;
      };

      git = {
        enable = true;
        adminPubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re";
        host = "git.cxl.sh";
      };

      unbound.enable = true;
    };
  };

  services = {
    pcscd.enable = true;
    udev.enable = true;
  };

  snowfallorg.users."c" = {
    admin = true;

    home.config = {
      cxl = {
        impermanence.skeleton = false;
        tools.git.key = "DE64538967CA0C68";
      };
    };
  };

  users.users = {
    root.hashedPasswordFile = "/secrets/passwords/root";

    "c" = {
      hashedPasswordFile = "/secrets/passwords/c";

      openssh.authorizedKeys.keys = [
        "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re" # c-pc
        "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICqMMrD6jbxzI07ox5NpJHHfqshsvz5KHR6GqVbpYIxr c@phone"
      ];

      extraGroups = [ "minecraft" ];
    };
  };

  system.stateVersion = "23.11";
}