WIP Ragenix

This commit is contained in:
Henry Hiles 2025-03-20 20:03:07 -04:00
parent 18bfabfc21
commit 799e2fd944
6 changed files with 308 additions and 119 deletions

View file

@ -0,0 +1,13 @@
{
inputs,
lib,
...
}: {
environment.systemPackages = [inputs.ragenix.packages.x86_64-linux.default];
age.secrets = with lib;
listToAttrs (mapAttrsToList (name: _: {
name = name;
value.file = name;
}) (import ../../secrets/secrets.nix));
}