nix/option/VirtManager.nix

10 lines
181 B
Nix
Raw Normal View History

{ lib, config, ... }:
let
purpose = config.module.purpose;
in
2024-11-16 04:43:59 +03:00
{
2025-01-04 14:27:49 +03:00
options.module.virtmanager.enable = lib.mkEnableOption "the VM support." // {
default = purpose.work;
};
2024-11-16 04:43:59 +03:00
}