From 532f52884a83854bd9640bf2be2dd23e22c8121a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 22 Apr 2026 13:37:49 -0400 Subject: [PATCH] fix: kernel uses no/yes not true/false --- modules/desktop-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/desktop-common.nix b/modules/desktop-common.nix index af12764..11676ab 100644 --- a/modules/desktop-common.nix +++ b/modules/desktop-common.nix @@ -251,7 +251,7 @@ UID16 = lib.mkForce no; X86_X32_ABI = lib.mkForce no; - VT = lib.mkForce (!config.services.kmscon.enable); + VT = lib.mkForce (if config.services.kmscon.enable then no else yes); }; } ];