From 92be697638ebc7300fa093a0a00daac314bc056d Mon Sep 17 00:00:00 2001 From: Finn Krein Date: Thu, 23 Mar 2023 17:30:11 +0100 Subject: [PATCH] xwayland: Add support for the X Security extension Enabling the security extension is needed to properly run xauth on wayland. For example `ssh -X` is not going to work properly without this. --- pkgs/servers/x11/xorg/xwayland.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/x11/xorg/xwayland.nix b/pkgs/servers/x11/xorg/xwayland.nix index c76295cec83..a4635177f2f 100644 --- a/pkgs/servers/x11/xorg/xwayland.nix +++ b/pkgs/servers/x11/xorg/xwayland.nix @@ -96,6 +96,7 @@ stdenv.mkDerivation rec { ]; mesonFlags = [ (lib.mesonBool "xwayland_eglstream" true) + (lib.mesonBool "xcsecurity" true) (lib.mesonOption "default_font_path" defaultFontPath) (lib.mesonOption "xkb_bin_dir" "${xkbcomp}/bin") (lib.mesonOption "xkb_dir" "${xkeyboard_config}/etc/X11/xkb")