From b6fa4de417bf6842d3ebb0adfab5504d85ca8af0 Mon Sep 17 00:00:00 2001 From: randomuser Date: Fri, 7 Jul 2023 23:17:41 -0500 Subject: [PATCH] experimentation --- configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 93b5a59..526e1a6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,6 +3,7 @@ with lib; let hostname = "virtbox"; + isVirtbox = hostname == "virtbox"; in { imports = @@ -34,7 +35,7 @@ in # branch and enable different capabilities based on the system - mkIf hostname == "virtbox" { + mkIf isVirtbox { services.virtbox.enable = true; }; }