8 lines
175 B
Nix
8 lines
175 B
Nix
{ lib, config, ... }:
|
|
let
|
|
purpose = config.module.purpose;
|
|
in
|
|
{
|
|
options.module.virtmanager.enable = lib.mkEnableOption "the VM support." // { default = purpose.work; };
|
|
}
|