add turny

This commit is contained in:
Joakim Repomaa
2025-07-23 13:19:06 +03:00
parent e317f9b0e4
commit 4a9dcd098f
8 changed files with 205 additions and 36 deletions

15
hosts/turny/secrets.nix Normal file
View File

@@ -0,0 +1,15 @@
{ lib, ... }:
{
age.secrets = lib.listToAttrs (
map
(secret: {
name = secret;
value = {
file = ../../secrets/${secret}.age;
};
})
[
"wpa_supplicant"
]
);
}