dotfiles/flakes/secrets/flake.nix
2025-10-20 20:45:26 -05:00

33 lines
523 B
Nix

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