mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
let
|
|
vanadium = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGPq2o9pbmLRGrOpAP76eYCAscmfakDC7wPm9fmsCCQM leana@vanadium"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDc55vENX+13c4s2w7zjTb8T/AnBnTi96yRC5+fy7Z2A root@vanadium"
|
|
];
|
|
|
|
tungsten = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDKTWVdXIZZuxw1FbBBaskExFmYfUWR1MboP/GnC1eCo leana@tungsten"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBkeH6KvULmx4XxgdbUoL8ZC0rAGTAOlYRWQRP0pKrzx root@tungsten"
|
|
];
|
|
|
|
all =
|
|
vanadium
|
|
++ tungsten;
|
|
in {
|
|
"wpa_password.age".publicKeys = all;
|
|
|
|
"restic_backblaze_pwd.age".publicKeys = all;
|
|
"restic_backblaze_repo.age".publicKeys = all;
|
|
"restic_backblaze_env.age".publicKeys = all;
|
|
|
|
"four_pwd.age".publicKeys = all;
|
|
"restic_four_pwd.age".publicKeys = all;
|
|
|
|
"sgbk_pwd.age".publicKeys = all;
|
|
"restic_sgbk_pwd.age".publicKeys = all;
|
|
|
|
"two_pwd.age".publicKeys = all;
|
|
|
|
"hoot_token.age".publicKeys = all;
|
|
"typst-bot_token.age".publicKeys = all;
|
|
"parrot_token.age".publicKeys = all;
|
|
|
|
"sshconfig.age".publicKeys = all;
|
|
"ltex_dict.age".publicKeys = all;
|
|
"iambconfig.age".publicKeys = all;
|
|
}
|