From 4719b4c0c6d21c3ae8869cb6e802821cbb6bd175 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 9 Dec 2025 12:11:46 +0000 Subject: [PATCH] Update gnome.nix --- settings/gnome.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/settings/gnome.nix b/settings/gnome.nix index 7f0cfa1..e7247db 100644 --- a/settings/gnome.nix +++ b/settings/gnome.nix @@ -1,6 +1,5 @@ # gnome.nix { config, pkgs, lib, ... }: - { config = lib.mkIf (config.networking.hostName == "FredOS-Gaming" || config.networking.hostName == "FredOS-Macbook") { # Enable Gnome @@ -17,6 +16,14 @@ config = lib.mkIf (config.networking.hostName == "FredOS-Gaming" || config.netwo gnomeExtensions.appindicator gnomeExtensions.hot-edge gnomeExtensions.rounded-window-corners-reborn + + # Wine/Wayland decoration support + libdecor + xorg.libxcb + xwayland ]; + + # Ensure XWayland has proper decoration support + programs.xwayland.enable = true; }; }