Skip to content

Commit 693a3f2

Browse files
committed
fix(installer): crash of X when booting on (some) real hardware
This crash was from the vmware mouse-drivers. Issue has been mitigated by disabling VMware guest integration, which I will probably never need anyway
1 parent c831ff9 commit 693a3f2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

packages/installer/base.nix

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
{modulesPath, ...}: {
1+
{
2+
modulesPath,
3+
lib,
4+
...
5+
}: {
26
_file = ./base.nix;
37

48
imports = [
@@ -9,4 +13,8 @@
913
edition = "nobbz";
1014
squashfsCompression = "zstd -Xcompression-level 10";
1115
};
16+
17+
# VMware guest tools are enabled by default in the installer and caused issues
18+
# on my Tuxedo laptop.
19+
virtualisation.vmware.guest.enable = lib.mkForce false;
1220
}

0 commit comments

Comments
 (0)