From 86fbc59bcfcd3652fd215dfbb56e126afcca4076 Mon Sep 17 00:00:00 2001 From: Nathan Date: Thu, 22 Jan 2026 09:18:06 -0600 Subject: [PATCH] virtual machines --- profiles/homebox/default.nix | 4 ++++ profiles/laptop/default.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/profiles/homebox/default.nix b/profiles/homebox/default.nix index 2c5f11f..d4bb3d2 100644 --- a/profiles/homebox/default.nix +++ b/profiles/homebox/default.nix @@ -111,6 +111,10 @@ sandbox.enable = false; }; + + virtual-machines = { + enable = true; + }; }; fonts.packages = with pkgs; [ nerd-fonts.fira-code ]; diff --git a/profiles/laptop/default.nix b/profiles/laptop/default.nix index 10107af..a4a9efb 100644 --- a/profiles/laptop/default.nix +++ b/profiles/laptop/default.nix @@ -74,6 +74,10 @@ enable = mkDefault false; }; }; + + virtual-machines = { + enable = true; + }; };