experimentation

This commit is contained in:
randomuser 2023-07-07 23:17:41 -05:00
parent 22ba0ba584
commit b6fa4de417
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
with lib; with lib;
let let
hostname = "virtbox"; hostname = "virtbox";
isVirtbox = hostname == "virtbox";
in in
{ {
imports = imports =
@ -34,7 +35,7 @@ in
# branch and enable different capabilities based on the system # branch and enable different capabilities based on the system
mkIf hostname == "virtbox" { mkIf isVirtbox {
services.virtbox.enable = true; services.virtbox.enable = true;
}; };
} }