10 lines
176 B
Nix
10 lines
176 B
Nix
|
{ lib, config, ... }:
|
||
|
let
|
||
|
purpose = config.module.purpose;
|
||
|
in
|
||
|
{
|
||
|
options.module.live.enable = lib.mkEnableOption "the live modules." // {
|
||
|
default = purpose.live;
|
||
|
};
|
||
|
}
|