From cd33a30c3f7e24f6f26c38eddc20095fae4a2445 Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Sun, 29 Sep 2024 15:46:52 -0400 Subject: [PATCH] fix: picom is broken with glx --- modules/DE/dwm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/DE/dwm.nix b/modules/DE/dwm.nix index 9d4de45..ac43cc5 100644 --- a/modules/DE/dwm.nix +++ b/modules/DE/dwm.nix @@ -21,7 +21,7 @@ picom = { serviceConfig = { - ExecStart = "${lib.getExe pkgs.picom} --backend glx"; + ExecStart = "${lib.getExe pkgs.picom} --backend egl"; Restart = "always"; RestartSec = 2; ExecReload = "pkill -usr1 -x $MAINPID";