From 475e245bec540916e7fc78038bc0f411f0cb870d Mon Sep 17 00:00:00 2001 From: chn Date: Mon, 1 Dec 2025 17:15:26 +0800 Subject: [PATCH] modules.system.gui: fix --- modules/system/gui.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/system/gui.nix b/modules/system/gui.nix index 9c3acdca..d270a2ec 100644 --- a/modules/system/gui.nix +++ b/modules/system/gui.nix @@ -83,8 +83,13 @@ inputs: { # let electron use gnome keyring https://github.com/electron/electron/issues/39789#issuecomment-3433810585 sessionVariables.GNOME_DESKTOP_SESSION_ID = "this-is-deprecated"; - # nautilus is needed before we use implementation from nixpkgs - systemPackages = [ inputs.pkgs.nautilus ]; + systemPackages = + [ + # nautilus is needed before we use implementation from nixpkgs + inputs.pkgs.nautilus + # needed for xwayland + inputs.pkgs.xwayland-satellite + ]; }; }) ];