mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-22 12:55:20 +08:00
23 lines
840 B
Nix
23 lines
840 B
Nix
let
|
|
config = import ../config.nix;
|
|
users = [
|
|
config.me.sshKey
|
|
# zest: unique just for decrypting secrets
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJYQQXPMHYBtRcPzSkjQ3oqyje8T4UlCpbr6XjrlzzlK srid@zest"
|
|
];
|
|
|
|
pureintent = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOKfR7GnwrIVemP/1kna8jboNRegIsaVL6mTi3oXwMdU";
|
|
systems = [
|
|
pureintent
|
|
];
|
|
in
|
|
{
|
|
"hedgedoc.env.age".publicKeys = users ++ systems;
|
|
"github-nix-ci/srid.token.age".publicKeys = users ++ systems;
|
|
"github-nix-ci/emaletter.token.age".publicKeys = users ++ systems;
|
|
"pureintent-basic-auth.age".publicKeys = users ++ systems;
|
|
"gmail-app-password.age".publicKeys = users ++ systems;
|
|
"hackage-password.age".publicKeys = users ++ systems;
|
|
"juspay-anthropic-api-key.age".publicKeys = users ++ systems;
|
|
"beszel-agent-key.age".publicKeys = users ++ systems;
|
|
}
|