16 lines
230 B
Nix
16 lines
230 B
Nix
|
{ config, lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./docker.nix
|
||
|
./podman.nix
|
||
|
./virtualbox.nix
|
||
|
./qemu.nix
|
||
|
];
|
||
|
|
||
|
options.components.virtualisation.enable = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
|
||
|
}
|