This commit is contained in:
Henri Dohmen 2025-07-14 22:57:12 +02:00
parent a018670eae
commit 4183ccb893
Signed by: hd
GPG key ID: AB79213B044674AE
14 changed files with 169 additions and 38 deletions

12
secrets.nix Normal file
View file

@ -0,0 +1,12 @@
let
keys =
let
k = (import ./var/ssh-keys.nix { });
in
k.root; # ++ k.hd;
secrets = [
"roam/rclone-conf"
"hd-password"
];
in
builtins.foldl' (acc: x: acc // { "secrets/${x}.age".publicKeys = keys; }) { } secrets