fix qt theme problem with the Tray Icon
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 10m27s

This commit is contained in:
Ingolf Wagner 2024-07-28 16:11:29 +02:00
parent 810d653a86
commit 43f3d86ed5
Signed by: palo
GPG key ID: 76BF5F1928B9618B
3 changed files with 6 additions and 5 deletions

View file

@ -25,5 +25,7 @@ with lib;
config = mkIf config.components.gui.enable { config = mkIf config.components.gui.enable {
# todo extract xorg stuff to prepare wayland # todo extract xorg stuff to prepare wayland
environment.enableAllTerminfo = true; environment.enableAllTerminfo = true;
qt.platformTheme = "qt5ct";
}; };
} }

View file

@ -119,10 +119,9 @@ in
}; };
}; };
services.copyq = {
#services.copyq = { enable = true;
# enable = true; };
#};
stylix.targets.i3.enable = true; stylix.targets.i3.enable = true;
@ -182,7 +181,6 @@ in
) )
]; ];
keybindings = keybindings =
let let
cfg = config.xsession.windowManager.i3; cfg = config.xsession.windowManager.i3;

View file

@ -8,6 +8,7 @@ with lib;
(mkIf config.gui.enable { (mkIf config.gui.enable {
home.packages = [ home.packages = [
freetube freetube
vlc
]; ];
}) })
{ {