From c20bd4c2390fe33d1f67c826cff726a13bdc0a73 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Thu, 24 Aug 2023 21:10:19 +0700 Subject: [PATCH] overlays/xinit: fix build --- overlays/xinit.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/xinit.nix b/overlays/xinit.nix index df006f1..6d0daed 100644 --- a/overlays/xinit.nix +++ b/overlays/xinit.nix @@ -4,7 +4,7 @@ self: super: { # Some info: # - Make startx use $XAUTHORITY as server auth files instead of .serverauth.$$ # - Make startx respect $XINITRC and $XSERVERRC - patches = old.patches ++ [ ./patches/startx.patch ]; + patches = (old.patches or []) ++ [ ./patches/startx.patch ]; }); }; }