2023-01-10 16:05:48 +01:00
|
|
|
let
|
2023-01-10 20:39:33 +01:00
|
|
|
adrielus = builtins.readFile ./hosts/nixos/tethys/id_ed25519.pub;
|
2023-01-12 20:49:08 +01:00
|
|
|
tethys = builtins.readFile ./hosts/nixos/tethys/ssh_host_ed25519_key.pub;
|
2023-01-10 16:05:48 +01:00
|
|
|
in
|
|
|
|
{
|
2023-01-12 20:49:08 +01:00
|
|
|
# Scoped for entire systems
|
|
|
|
"./hosts/nixos/common/global/wireless/wifi_passwords.age".publicKeys = [ adrielus tethys ];
|
|
|
|
"./hosts/nixos/common/users/adrielus_password.age".publicKeys = [ adrielus tethys ];
|
|
|
|
|
|
|
|
# Scoped for the user
|
2023-05-28 05:24:36 +02:00
|
|
|
"./home/features/desktop/wakatime/wakatime_config.age".publicKeys = [ adrielus ];
|
2023-06-18 18:10:20 +02:00
|
|
|
"./home/features/desktop/spotifyd/password.age".publicKeys = [ adrielus ];
|
2023-01-10 16:05:48 +01:00
|
|
|
}
|