Files
nixos-config/secrets/secrets.nix

22 lines
1.1 KiB
Nix
Raw Normal View History

2023-10-31 12:10:31 +01:00
let
2023-11-01 00:09:25 +01:00
server = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN82ukcaWQZcihgh+n0h+ihwTafm64SO1wngibOA6Vro root@server";
pc = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMkvr+vT7Ik0fjquxb9xQBfVVWJPgrfC+vJZsyG2V+/G thiloho@pc";
2023-10-31 12:10:31 +01:00
in
{
2023-11-01 00:09:25 +01:00
"hedgedoc-environment-file.age".publicKeys = [ server pc ];
"discord-bot-token.age".publicKeys = [ server pc ];
2023-11-12 19:18:41 +01:00
"todos-environment-file.age".publicKeys = [ server pc ];
2023-12-22 09:57:07 +01:00
"restic/minecraft-password.age".publicKeys = [ server pc ];
"restic/minecraft-environment-file.age".publicKeys = [ server pc ];
"restic/minecraft-repository.age".publicKeys = [ server pc ];
2023-12-22 09:57:07 +01:00
"restic/hedgedoc-password.age".publicKeys = [ server pc ];
"restic/hedgedoc-environment-file.age".publicKeys = [ server pc ];
"restic/hedgedoc-repository.age".publicKeys = [ server pc ];
"restic/todos-password.age".publicKeys = [ server pc ];
"restic/todos-environment-file.age".publicKeys = [ server pc ];
"restic/todos-repository.age".publicKeys = [ server pc ];
"restic/discord-bot-password.age".publicKeys = [ server pc ];
"restic/discord-bot-environment-file.age".publicKeys = [ server pc ];
"restic/discord-bot-repository.age".publicKeys = [ server pc ];
2023-11-12 19:18:41 +01:00
}