mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-20 01:56:47 +02:00
29 lines
510 B
Nix
29 lines
510 B
Nix
|
{ lib, ... }: {
|
||
|
options.submodule = lib.mkOption {
|
||
|
type = lib.types.submoduleWith {
|
||
|
modules = [
|
||
|
{
|
||
|
options.inner = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
default = {};
|
||
|
};
|
||
|
|
||
|
config.submodule = lib.mkMerge [
|
||
|
({ lib, ... }: {
|
||
|
options.outer = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
})
|
||
|
{
|
||
|
inner = true;
|
||
|
outer = true;
|
||
|
}
|
||
|
];
|
||
|
}
|