Altered gtk.nix for better dark theme support

This commit is contained in:
2026-03-16 07:56:19 +00:00
parent 08e1e856bf
commit 007762e25e
2 changed files with 31 additions and 18 deletions
+9 -5
View File
@@ -2,13 +2,17 @@
{
environment.systemPackages = with pkgs; [
catppuccin-gtk
catppuccin.gtk.mocha.standard.blue
papirus-icon-theme
];
environment.sessionVariables = {
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark";
GTK_ICON_THEME = "Papirus-Dark";
GTK_APPLICATION_PREFER_DARK_THEME = "1";
programs.gtk = {
enable = true;
gtk3.enable = true;
theme.name = "Catppuccin-Mocha-Standard-Blue-Dark";
theme.variant = "dark";
iconTheme.name = "Papirus-Dark";
};
# Check session.nix for variables !
}