mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-31 19:47:15 +08:00
12 lines
442 B
Nix
12 lines
442 B
Nix
let
|
|
config = import ../users/config.nix;
|
|
users = [ config.users.srid.sshKey ];
|
|
|
|
appreciate = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICra+ZidiwrHGjcGnyqPvHcZDvnGivbLMayDyecPYDh0";
|
|
immediacy = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKZALEiJIrH1Kj10u+WshkQXr5NHmszza8wNLqW+2fB0";
|
|
systems = [ appreciate immediacy ];
|
|
in
|
|
{
|
|
"hedgedoc.env.age".publicKeys = users ++ systems;
|
|
"github-nix-ci/srid.token.age".publicKeys = users ++ systems;
|
|
}
|