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

View file

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