mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
13 lines
436 B
Nix
13 lines
436 B
Nix
let
|
|
thomas = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINaQYR0/Oj6k1H03kshz2J7rlGCaDSuaGPhhOs9FcZfn";
|
|
users = [ thomas ];
|
|
|
|
utgard = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN02izetkp+Wru4KE0ZASwOcjJfXr3U0H/Q/i0fjdgJ7";
|
|
systems = [ utgard ];
|
|
in
|
|
{
|
|
"services/acme/credentials.age".publicKeys = users ++ systems;
|
|
"services/frpc/token.age".publicKeys = users ++ systems;
|
|
"services/nixbuild/sshkey.age".publicKeys = users ++ systems;
|
|
}
|