mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2025-12-12 18:10:07 +01:00
10 lines
161 B
Nix
10 lines
161 B
Nix
{lib, ...}:
|
|
with lib; {
|
|
mkNestedOption = options:
|
|
mkOption {
|
|
type = types.submodule {
|
|
inherit options;
|
|
};
|
|
default = {};
|
|
};
|
|
}
|