feat: initial commit

This commit is contained in:
nullishamy 2025-04-05 13:31:32 +01:00
commit 486bfc17d1
Signed by: amy
SSH key fingerprint: SHA256:WmV0uk6WgAQvDJlM8Ld4mFPHZo02CLXXP5VkwQ5xtyk
11 changed files with 551 additions and 0 deletions

9
secrets/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ lib, ... }:
{
age.secrets = lib.mapAttrs' (
fileName: _:
lib.nameValuePair (lib.removeSuffix ".age" fileName) {
file = ./. + "/${fileName}";
}
) (import ./secrets.nix);
}