Update gnome.nix

This commit is contained in:
ediblerope 2025-12-09 12:11:46 +00:00 committed by GitHub
parent 56e78ddb01
commit 4719b4c0c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
};
}