Working on GTK

This commit is contained in:
2026-03-16 09:18:09 +00:00
parent 4a8e68a0d9
commit d2a3c8bc08
@@ -1,24 +1,16 @@
{ pkgs, ... }:
{
# Install the Catppuccin GTK theme system-wide
# Install the GTK theme and icon theme
environment.systemPackages = with pkgs; [
catppuccin-gtk
catppuccin-gtk # or inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha
papirus-icon-theme
];
# Set the GTK theme and icon theme system-wide
gtk = {
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
};
iconTheme = {
name = "Papirus-Dark";
};
};
# Force dark mode for all GTK applications
# Set environment variables to enforce the theme
environment.sessionVariables = {
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark";
GTK_ICON_THEME = "Papirus-Dark";
GTK_ENABLE_DARK_MODE = "1";
};
}