12 lines
344 B
Nix
12 lines
344 B
Nix
|
let
|
||
|
zion =
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFRqINHR7/zc+c3/PuR+NeSsBHXXzBiEtFWSK6QaxQTW";
|
||
|
in {
|
||
|
"wireguard.age".publicKeys = [ zion ];
|
||
|
"syncthing.age".publicKeys = [ zion ];
|
||
|
"msmtp.age".publicKeys = [ zion ];
|
||
|
"gitea.age".publicKeys = [ zion ];
|
||
|
"ddclient.age".publicKeys = [ zion ];
|
||
|
"miniflux.age".publicKeys = [ zion ];
|
||
|
}
|