nix/option/Live.nix

10 lines
176 B
Nix
Raw Normal View History

2025-01-18 21:01:06 +03:00
{ lib, config, ... }:
let
purpose = config.module.purpose;
in
{
options.module.live.enable = lib.mkEnableOption "the live modules." // {
default = purpose.live;
};
}