fix qt, gtk and darkmode settings

This commit is contained in:
Fabian Montero 2025-01-05 23:31:19 -06:00
parent 97056c6bfc
commit 2e0c03a5ec
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
2 changed files with 4 additions and 16 deletions

View file

@ -139,11 +139,10 @@ in {
}; };
}; };
qt = { #qt = { mentioning qt makes qt applications not work, I should probably check how to fix this
enable = true; # enable = true;
style.name = "bb10dark"; # style.name = "bb10dark";
platformTheme.name = "gtk"; #};
};
home.sessionVariables = { home.sessionVariables = {
# Use gtk in jvm apps # Use gtk in jvm apps

View file

@ -1,11 +0,0 @@
{
config,
lib,
pkgs,
...
}: {
home.packages = with pkgs; [
gruvbox-dark-icons-gtk
libsForQt5.breeze-gtk
];
}