add vesuvio key to secrets

This commit is contained in:
uku 2023-11-15 00:59:51 +01:00
parent a2d052d1e1
commit a0fa18e84c
Signed by: uku
GPG key ID: 7D01D7B105E77166
3 changed files with 23 additions and 16 deletions

View file

@ -1,6 +1,11 @@
let
main = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN+7+KfdOrhcnHayxvOENUeMx8rE4XEIV/AxMHiaNUP8 uku3lig"];
server = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdyRFBTdyCCMQ7I75TyO9voxrrreXQTXtSw+iCRf4XI root@vesuvio"] ++ main;
in {
"desktop/rootPassword.age".publicKeys = main;
"desktop/userPassword.age".publicKeys = main;
"vesuvio/rootPassword.age".publicKeys = server;
"vesuvio/userPassword.age".publicKeys = server;
}