From 88a4d8e30978b4289495914c05c7b079a805d53e Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 3 Jan 2024 20:01:47 -0500 Subject: [PATCH] Put myself in the same list as the other `makemake` wheel users (#322) `ngi-admins` is only used by this, so this doesn't change the meaning of the code, it just folds a special case (me) into a common case (the other non-core "NGI admins"). C.F. f587218f44f2e7827f85bea3ec77d02541993a0d --- ngi0/makemake/flake.nix | 2 +- ssh-keys.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ngi0/makemake/flake.nix b/ngi0/makemake/flake.nix index de052f9a..84320fe9 100644 --- a/ngi0/makemake/flake.nix +++ b/ngi0/makemake/flake.nix @@ -101,7 +101,7 @@ boot.loader.grub.copyKernels = true; users.extraUsers.root.openssh.authorizedKeys.keys = - with import ../../ssh-keys.nix; ngi-admins ++ [ john-ericson ]; + (import ../../ssh-keys.nix).ngi-admins; }) ]; }; diff --git a/ssh-keys.nix b/ssh-keys.nix index 4d3248e9..945bba08 100644 --- a/ssh-keys.nix +++ b/ssh-keys.nix @@ -50,5 +50,5 @@ rec { julienmalka ]; - ngi-admins = infra-core ++ [ regnat cleeyv lorenz-leutgeb tomberek ]; + ngi-admins = infra-core ++ [ regnat cleeyv lorenz-leutgeb tomberek john-ericson ]; }