1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../secrets/secrets.nix

27 lines
971 B
Nix
Raw Normal View History

2022-03-22 08:55:51 +01:00
let
thomas = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINaQYR0/Oj6k1H03kshz2J7rlGCaDSuaGPhhOs9FcZfn";
users = [ thomas ];
2022-04-10 20:58:16 +02:00
2022-11-22 11:12:50 +01:00
anubis = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII8giHHf/baGidSc0GR0IUDEm2ym/EZVbtA7p2RkQ7In";
2024-01-31 07:56:27 +01:00
chnum = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHKFHDzfYlfsmmL+jBsTJ96WM5ijXaFPxjR6LFz04dpZ";
asgard = "";
utgard = "";
vanaheim = "";
yggdrasil = "";
systems = [ anubis chnum ];
2022-03-22 08:55:51 +01:00
in
{
2022-04-10 20:58:16 +02:00
"services/acme/credentials.age".publicKeys = users ++ systems;
2022-10-25 09:53:40 +02:00
"services/tailscale/authkey.age".publicKeys = users ++ systems;
2022-10-25 09:53:40 +02:00
"services/shares/printer.age".publicKeys = users ++ systems;
"services/shares/media.age".publicKeys = users ++ systems;
"users/root/password.age".publicKeys = users ++ systems;
2022-10-25 09:53:40 +02:00
"users/thomas/password.age".publicKeys = users ++ systems;
"users/anna/password.age".publicKeys = users ++ systems;
"users/adrian/password.age".publicKeys = users ++ systems;
"users/tabea/password.age".publicKeys = users ++ systems;
2022-03-22 08:55:51 +01:00
}