10 lines
210 B
Nix
10 lines
210 B
Nix
{ config, lib, ... }: {
|
|
|
|
options.sysconfig.generic.enable = lib.options.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
};
|
|
|
|
config = lib.mkIf config.sysconfig.generic.enable {};
|
|
}
|