Commit 3fd3bf4e8a52

Vincent Demeester <vincent@sbr.pm>
2026-01-09 10:18:35
fix(emacs): withX should always be false..
We either build it with pgtk or without any graphics. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent ea8fe42
Changed files (1)
home
common
home/common/dev/emacs.nix
@@ -199,7 +199,7 @@ in
       withTreeSitter = true;
       withNativeCompilation = true;
       # Only enable GUI features when desktop is configured
-      withX = desktop != null;
+      withX = false; # Never enable X
       withPgtk = desktop != null;
       withWebP = desktop != null;
       withGTK3 = desktop != null;