nixos-config/crypto/secrets.nix

16 lines
286 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 = [
sshKeys.host.yaseen
sshKeys.tasia.yaseen
];
2024-08-07 16:33:11 +02:00
"nm-secrets.age".publicKeys = [
sshKeys.tasia.yaseen
sshKeys.host.enry
sshKeys.host.phoenix
sshKeys.host.stuff
sshKeys.host.yaseen
];
}