nixos-config/crypto/secrets.nix

16 lines
278 B
Nix
Raw Normal View History

2024-08-07 16:33:11 +02:00
let
sshKeys = import ./ssh-keys.nix;
in {
2024-09-29 18:59:55 +02:00
"wifi.age".publicKeys = [
2025-01-24 11:31:28 +01:00
sshKeys.host.cave
sshKeys.tasia.cave
2024-09-29 18:59:55 +02:00
];
2024-08-07 16:33:11 +02:00
"nm-secrets.age".publicKeys = [
2025-01-24 11:31:28 +01:00
sshKeys.tasia.cave
2024-08-07 16:33:11 +02:00
sshKeys.host.enry
sshKeys.host.phoenix
sshKeys.host.stuff
2025-01-24 11:31:28 +01:00
sshKeys.host.cave
2024-08-07 16:33:11 +02:00
];
}