13 lines
274 B
Nix
13 lines
274 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
|
||
|
];
|
||
|
}
|