WIP new top level flakes break down

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-20 20:45:26 -05:00
parent 2238aaf367
commit 7215fd37bf
57 changed files with 3033 additions and 69 deletions

33
flakes/secrets/flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
inputs = {
ragenix.url = "github:yaxitech/ragenix";
};
outputs =
{
ragenix,
...
}:
{
nixosModules = {
default =
{
config,
lib,
pkgs,
...
}:
{
imports = [
ragenix.nixosModules.age
./secrets
];
config = {
_module.args = {
inherit ragenix;
};
};
};
};
};
}