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
John Ericson committed
Jan 3, 2024 at 20:01 UTC
88a4d8e30978b4289495914c05c7b079a805d53e
2 files changed
+2
-2
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; ngi-admins ++ [ john-ericson ];
104
+ (import ../../ssh-keys.nix).ngi-admins;
105
})
106
];
107
};
ssh-keys.nix
+1
-1
@@ -50,5 +50,5 @@ rec {
50
julienmalka
51
];
52
53
- ngi-admins = infra-core ++ [ regnat cleeyv lorenz-leutgeb tomberek ];
53
+ ngi-admins = infra-core ++ [ regnat cleeyv lorenz-leutgeb tomberek john-ericson ];
54
}