feat: got secrets up and running

This commit is contained in:
silver 2023-01-15 22:20:55 +00:00
parent 8330a47727
commit 7428a53325
3 changed files with 23 additions and 4 deletions

15
secrets/secrets.nix Normal file
View file

@ -0,0 +1,15 @@
let
admin = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK6DjXTAxesXpQ65l659iAjzEb6VpRaWKSg4AXxifPw9 Skynet Admin";
users = [
admin
];
# change this when its properly set up
agentjones = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGJDVQGjIwMQmkElGshgKDAlChM2xdNN6iI5Ap2IbAs5";
systems = [
agentjones
];
in
{
#"secret1.age".publicKeys = users ++ systems;
}