nix-config/nixos/modules/inputs.nix
2023-02-04 16:08:50 +01:00

19 lines
299 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 = { };
}