16 lines
286 B
Nix
16 lines
286 B
Nix
let
|
|
sshKeys = import ./ssh-keys.nix;
|
|
in {
|
|
"wifi.age".publicKeys = [
|
|
sshKeys.host.yaseen
|
|
sshKeys.tasia.yaseen
|
|
];
|
|
"nm-secrets.age".publicKeys = [
|
|
sshKeys.tasia.yaseen
|
|
sshKeys.host.enry
|
|
sshKeys.host.phoenix
|
|
sshKeys.host.stuff
|
|
sshKeys.host.yaseen
|
|
];
|
|
}
|