mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
14 lines
606 B
Nix
14 lines
606 B
Nix
let
|
|
config = import ../config.nix;
|
|
users = [ config.me.sshKey ];
|
|
|
|
appreciate = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICra+ZidiwrHGjcGnyqPvHcZDvnGivbLMayDyecPYDh0";
|
|
pureintent = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICkY5feaNt4elPqRQimB9h3OFxtFAzp98p1H+JezBv92 root@nixos";
|
|
naivete = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBXQ4jgsoM0K+6oddNCerjVFDibQcv7JWwc5OsT8AkGa";
|
|
systems = [ appreciate pureintent naivete ];
|
|
in
|
|
{
|
|
"hedgedoc.env.age".publicKeys = users ++ systems;
|
|
"github-nix-ci/srid.token.age".publicKeys = users ++ systems;
|
|
"pureintent-basic-auth.age".publicKeys = users ++ systems;
|
|
}
|