rpi4-nixos-template/secrets/secrets.nix

9 lines
176 B
Nix
Raw Permalink Normal View History

2023-12-20 00:28:10 +01:00
let
rpi4-key = "<content of /etc/ssh/ssh_host_ed25519_key.pub on the rpi4>";
myKey = "<my ssh pub key>";
keys = [rpi4-key myKey];
in {
"wifi.age".publicKeys = keys;
}