nixlets/lib/utils.nix

11 lines
161 B
Nix
Raw Permalink Normal View History

2024-05-08 17:09:17 +00:00
{lib, ...}:
with lib; {
mkNestedOption = options:
mkOption {
type = types.submodule {
inherit options;
};
default = {};
};
}