blob: 8fcda09e9641523eeb86168e57a7ab25ac5d6245 (
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
|
{ 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;
status.enable = true;
};
minecraft = {
beta = {
enable = true;
port = 25565;
};
stargazers = {
enable = true;
port = 25566;
start = false;
};
zenith = {
enable = true;
port = 25569;
};
};
};
};
services = {
pcscd.enable = true;
udev.enable = true;
};
snowfallorg.users."c" = {
admin = true;
home.config = {
cxl = {
impermanence = {
skeleton = false;
location = lib.mkForce "/persist/home/c";
secure.location = lib.mkForce "/persist/secure/home/c";
};
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";
}
|