nix-config/nixos/modules/inputs.nix
2025-06-03 20:04:44 +02:00

20 lines
304 B
Nix

{
config,
pkgs,
lib,
...
}:
let
cfg = config.dadada.inputs;
in
{
options = {
dadada.inputs = lib.mkOption {
type = lib.types.attrsOf lib.types.attrs;
description = "Flake inputs that should be available inside Nix modules";
default = { };
};
};
config = { };
}