add agenix support for secrets

This commit is contained in:
eyjhb 2024-08-09 21:34:46 +02:00
parent 99dd7bfc16
commit 4ba7d237b7
Signed by: eyjhb
GPG key ID: 609F508E3239F920
4 changed files with 36 additions and 1 deletions

13
secrets/secrets.nix Normal file
View file

@ -0,0 +1,13 @@
let
user_eyjhb = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPuma8g+U8Wh+4mLvZoV9V+ngPqxjuIG4zhsbaTeXq65 eyjhb@chronos";
user_rendal = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGee4uz+HDOj4Y4ANOhWJhoc4mMLP1gz6rpKoMueQF2J rendal@popper";
users = [ user_eyjhb user_rendal ];
system_gerd = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJosDVq8j4V50/z6nj2OMBPhqda95HOS1hKLGvo8viLQ";
systems = [ system_gerd ];
defaultAccess = users ++ systems;
in
{
}