mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
14 lines
222 B
Nix
14 lines
222 B
Nix
![]() |
{ lib, ... }:
|
||
|
{
|
||
|
options.submodule = lib.mkOption {
|
||
|
type = lib.types.submoduleWith {
|
||
|
modules = [
|
||
|
./declare-enable.nix
|
||
|
];
|
||
|
};
|
||
|
default = { };
|
||
|
};
|
||
|
|
||
|
config.submodule = ./define-enable.nix;
|
||
|
}
|