From 6de2d444b3b70107f77d4602e07c639aacc3e846 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sun, 4 May 2025 15:28:56 -0700 Subject: [PATCH] Fixed failing build for carbon system --- modules/home/windowManagers/sway/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/home/windowManagers/sway/default.nix b/modules/home/windowManagers/sway/default.nix index 8139ac4..dd9e1db 100644 --- a/modules/home/windowManagers/sway/default.nix +++ b/modules/home/windowManagers/sway/default.nix @@ -170,10 +170,12 @@ in workspaceAutoBackAndForth = true; startup = lib.mkMerge [ - (mkIf cfg.clamshell.enable { - command = "${clamshell_script}/bin/clamshell"; - always = true; - }) + [ + (mkIf cfg.clamshell.enable { + command = "${clamshell_script}/bin/clamshell"; + always = true; + }) + ] # Trying to copy what arch linux does [ # { command = "systemctl --user set-environment WAYLAND_DISPLAY=wayland-1 XDG_CURRENT_DESKTOP=sway"; }