Update gnome.nix

This commit is contained in:
ediblerope 2026-01-05 09:25:10 +00:00 committed by GitHub
parent 153cc02e67
commit 4f019e03db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,7 @@ config = lib.mkIf (config.networking.hostName == "FredOS-Gaming" || config.netwo
gnomeExtensions.rounded-window-corners-reborn gnomeExtensions.rounded-window-corners-reborn
adwaita-icon-theme adwaita-icon-theme
gnome-themes-extra # This includes Adwaita cursor theme gnome-themes-extra # This includes Adwaita cursor theme
papirus-icon-theme # Add Papirus icon theme
]; ];
# Set cursor theme # Set cursor theme
@ -29,6 +30,16 @@ config = lib.mkIf (config.networking.hostName == "FredOS-Gaming" || config.netwo
]; ];
}; };
# Set icon theme via dconf
programs.dconf.profiles.user.databases = [{
settings = {
"org/gnome/desktop/interface" = {
icon-theme = "Papirus"; # Use Papirus
cursor-theme = "Adwaita";
};
};
}];
programs.xwayland.enable = true; programs.xwayland.enable = true;
programs.dconf.enable = true; programs.dconf.enable = true;
}; };