aboutsummaryrefslogtreecommitdiff
path: root/systems/x86_64-linux/copenhagen/default.nix
blob: e893f43a99c9276341ebe7a393c4598284cc917e (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
{ 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;
        port = 42069;
      };

      web = {
        personal.enable = true;
        landing.enable = true;
        images.enable = true;
        stargazers.enable = true;
      };

      minecraft = {
        stargazers = {
          enable = true;
          port = 25566;
        };

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

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

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

    config = {
      cxl.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 AAAAC3NzaC1lZDI1NTE5AAAAICGftQ5W8QMIVhgDijreliiMgIqwQvxwTkpMftJdQWu+ caroline@larimo.re" # phoenix
      ];

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

  system.stateVersion = "23.11";
}