Apparently using QT_QPA_PLATFORMTHEME=gtk makes things depend on xwayland

This commit is contained in:
Charlotte Van Petegem 2021-10-16 15:20:33 +02:00
parent 934932998c
commit fb914c0f1f
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 14 additions and 10 deletions

6
flake.lock generated
View file

@ -42,11 +42,11 @@
}, },
"emacs-overlay": { "emacs-overlay": {
"locked": { "locked": {
"lastModified": 1634349588, "lastModified": 1634376134,
"narHash": "sha256-XUWjr6REnzPnpPtdf+QsLHwBI5R+qhvCWRAzOVDmyto=", "narHash": "sha256-P/l6Nj89bolKiqePEpymRYbm3rHQ7pZC05T6H0sqcUQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "a7442f550bfedfccb1822fd8ceaf6e44955f43db", "rev": "69f0a02671801fc02e61283091daef970a300ab3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -41,8 +41,8 @@
''; '';
}; };
dconf.settings."org/gnome/desktop/interface" = { dconf.settings."org/gnome/desktop/interface" = {
gtk-theme = "Arc"; gtk-theme = "Breeze";
icon-theme = "Arc"; icon-theme = "breeze";
cursor-theme = "Vanilla-DMZ"; cursor-theme = "Vanilla-DMZ";
}; };
gtk = { gtk = {
@ -61,17 +61,21 @@
gtk-cursor-theme-size = 0; gtk-cursor-theme-size = 0;
}; };
iconTheme = { iconTheme = {
package = pkgs.arc-icon-theme; package = pkgs.libsForQt5.breeze-icons;
name = "Arc"; name = "breeze";
}; };
theme = { theme = {
package = pkgs.arc-theme; package = pkgs.libsForQt5.breeze-gtk;
name = "Arc"; name = "Breeze";
}; };
}; };
qt = { qt = {
enable = true; enable = true;
platformTheme = "gtk"; platformTheme = "gnome";
style = {
name = "breeze";
package = pkgs.libsForQt5.breeze-qt5;
};
}; };
}; };
}; };