mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-31 23:46:48 +02:00
13 lines
221 B
Nix
13 lines
221 B
Nix
|
{ lib, ... }: {
|
||
|
options.submodule = lib.mkOption {
|
||
|
type = lib.types.submoduleWith {
|
||
|
modules = [
|
||
|
./declare-enable.nix
|
||
|
];
|
||
|
};
|
||
|
default = {};
|
||
|
};
|
||
|
|
||
|
config.submodule = ./define-enable.nix;
|
||
|
}
|