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