sway: Make QT applications dark

This commit is contained in:
PapaTutuWawa 2021-11-09 20:16:22 +01:00
parent 171312e043
commit d3eb9e25c3

View File

@ -45,7 +45,11 @@ in {
]; ];
}; };
environment.sessionVariables = { qt5.style = "adwaita-dark";
environment = {
systemPackages = with pkgs; [ adwaita-qt ];
sessionVariables = {
# sway # sway
#"_JAVA_AWT_NONREPARENTING" = 1; #"_JAVA_AWT_NONREPARENTING" = 1;
@ -55,6 +59,7 @@ in {
"ELM_ENGINE" = "wayland-egl"; "ELM_ENGINE" = "wayland-egl";
"SDL_VIDEODRIVER" = "wayland"; "SDL_VIDEODRIVER" = "wayland";
}; };
};
programs.sway.enable = true; programs.sway.enable = true;
home-manager.users."${config.ptw.system.singleUser}" = { home-manager.users."${config.ptw.system.singleUser}" = {