We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a9af03 commit 6e42fc0Copy full SHA for 6e42fc0
configuration.nix
@@ -16,7 +16,7 @@
16
};
17
services.qemuGuest.enable = true;
18
services.spice-vdagentd.enable = true;
19
- virtualisation.virtualbox.guest.enable = true;
+ virtualisation.virtualbox.guest.enable = lib.mkIf (pkgs.stdenv.hostPlatform.isx86_64) true; # Quick solution as VirtualBox doesn't support ARM
20
virtualisation.hypervGuest.enable = true;
21
22
# For convenience of installation/debugging
@@ -31,7 +31,8 @@
31
htop
32
bash-completion
33
# More guest agents
34
- xen-guest-agent
35
open-vm-tools
+ ] ++ lib.optionals (pkgs.stdenv.hostPlatform.isx86_64) [ # Quick solution as Xen doesn't support ARM
36
+ xen-guest-agent
37
];
38
}
0 commit comments