summaryrefslogtreecommitdiff
path: root/modules/virt/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/virt/default.nix')
-rw-r--r--modules/virt/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/virt/default.nix b/modules/virt/default.nix
deleted file mode 100644
index c5d3960..0000000
--- a/modules/virt/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- 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.";
- };
-}