fix(marr): permission issues

This commit is contained in:
Nydragon 2024-10-23 00:40:11 +02:00
parent 9001486077
commit 836bea29b2
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 9 additions and 8 deletions

View file

@ -53,11 +53,11 @@
};
age = {
identityPaths = [
"/etc/ssh/ssh_host_ed25519_key"
];
identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
secrets.rustypaste = {
file = ../../secrets/rustypaste.age;
mode = "440";
group = "wheel";
};
};
@ -144,7 +144,6 @@
"libvirtd"
"dialout" # Necessary for serial port interactions
];
openssh.authorizedKeys.keys = [ pubkeys.ny ];
};
};

View file

@ -8,23 +8,25 @@ let
};
systems = {
brontes = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICgknH3OPazZNhH5xkYfXBcYpI3TXj/eRp0/zzjtVJBf";
marr = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMh2nUUKt3xsKiwZUuo6HgvR3lr7rRAl0SOH/502sFP";
marr = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAr1vzx7AAfyOrdIHUvYIN9LRL0x1M6pGkDXszy67l6n";
raptus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKdpjGR/pV1roktZdKIVVWqds0JB+x1ksfyQmYPMLK7o";
shan = "";
shan = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPnASO1+h9tUYsNrsePcmxFLpKBkyCXbcZB9W7f5Yt5U";
nihilus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID7BfsJK6fmtoigWlfCliSWwonePOtfTVNTUJuyMiNi4";
};
workstations = take "brontes" "marr";
server = take "raptus" "shane";
server = take "raptus" "shan" "nihilus";
all = foldl' (a: b: a ++ [ b ]) [ users.ny ] (attrValues systems);
in
{
inherit all workstations server;
inherit (users) ny;
inherit (users)
inherit (systems)
raptus
brontes
marr
shan
nihilus
;
}