{ lib, config, pkgs, ... }: let inherit (lib) mkEnableOption; cfg = config.virt; in { imports = [ ./docker.nix ./qemu.nix ]; options.virt = { docker = mkEnableOption "Install docker and its components."; qemu = mkEnableOption "Install qemu and its components."; }; }