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