@cryptotaxi247 / infra / commits / 7f3cad02

Add Lorenz Leutgeb as NGI admin

Eelco Dolstra committed Sep 25, 2023 at 13:58 UTC 7f3cad0258938ed2e78034126e1d03b7058dafb4
2 files changed +5 -1
ngi0/makemake/flake.nix
+1 -1
@@ -101,7 +101,7 @@
101 boot.loader.grub.copyKernels = true;
102
103 users.extraUsers.root.openssh.authorizedKeys.keys =
104 - with import ../../ssh-keys.nix; [ zimbatm regnat cleeyv ];
104 + (import ../../ssh-keys.nix).ngi-admins;
105 })
106 ];
107 };
ssh-keys.nix
+4
@@ -34,10 +34,14 @@ rec {
34
35 julienmalka = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGa+7n7kNzb86pTqaMn554KiPrkHRGeTJ0asY1NjSbpr julien@tower";
36
37 + lorenz-leutgeb = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhK7CqgIIbSthoNn8ea32krOnMzC807Z+PpBkR2YOVj";
38 +
39 infra-core = [ eelco graham graham-hermes-conrad zimbatm amine vcunat ];
40 infra = infra-core ++ [
41 hexa-gaia
42 hexa-helix
43 julienmalka
44 ];
45 +
46 + ngi-admins = infra-core ++ [ regnat cleeyv lorenz-leutgeb ];
47 }