33 lines
523 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|