mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-06 21:00:35 -04:00
8 lines
306 B
Nix
8 lines
306 B
Nix
let
|
|
desktop_may = builtins.readFile ./secrets/ssh/desktop_may_pub;
|
|
desktop_host = builtins.readFile ./secrets/ssh/desktop_host_pub;
|
|
pub_keys = [ desktop_may desktop_host ];
|
|
in {
|
|
"secrets/wireguard/server_priv.age".publicKeys = pub_keys;
|
|
"secrets/wireguard/home_psk.age".publicKeys = pub_keys;
|
|
}
|