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