diff --git a/common/admins.nix b/common/admins.nix index 1b55cc8..c059f0b 100644 --- a/common/admins.nix +++ b/common/admins.nix @@ -1,14 +1,15 @@ let keys = import ./ssh-keys.nix; in { - users.users.root.openssh.authorizedKeys.keys = + users.users.root.openssh.authorizedKeys.keys = keys.users.delroth ++ - keys.users.k900 ++ + keys.users.k900 ++ keys.users.raito ++ - keys.users.maxine ++ + keys.users.maxine ++ keys.users.jade ++ keys.users.janik ++ keys.users.lukegb ++ keys.users.emilylange ++ - keys.users.yuka; + keys.users.yuka ++ + keys.users.thubrecht; } diff --git a/common/ssh-keys.nix b/common/ssh-keys.nix index 7d06233..4a95d23 100644 --- a/common/ssh-keys.nix +++ b/common/ssh-keys.nix @@ -44,5 +44,6 @@ lukegb = [ ''cert-authority,principals="lukegb" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEqNOwlR7Qa8cbGpDfSCOweDPbAGQOZIcoRgh6s/J8DR'' ]; emilylange = [ "no-touch-required sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIL7jgq3i+N3gVJhs4shm7Kmw6dIocs2OuR0GBMG1RxfKAAAABHNzaDo=" ]; yuka = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKath4/fDnlv/4fzxkPrQN1ttmoPRNu/m9bEtdPJBDfY cardno:16_933_242" ]; + thubrecht = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPM1jpXR7BWQa7Sed7ii3SbvIPRRlKb3G91qC0vOwfJn" ]; }; }