We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 487e6ef commit 2607ac7Copy full SHA for 2607ac7
1 file changed
home-manager/gtk.nix
@@ -4,7 +4,7 @@
4
gtk = {
5
enable = true;
6
7
- theme = {
+ theme = lib.mkDefault {
8
name = "WhiteSur-Dark";
9
package = pkgs.whitesur-gtk-theme;
10
};
@@ -15,22 +15,14 @@
15
16
17
iconTheme = lib.mkDefault {
18
- name = "WhiteSur";
+ name = "WhiteSur-dark";
19
package = pkgs.whitesur-icon-theme;
20
21
-
22
- gtk3.extraConfig = lib.mkDefault {
23
- "gtk-application-prefer-dark-theme" = true;
24
- };
25
26
- gtk4.extraConfig = lib.mkDefault {
27
28
29
30
31
- qt = {
32
- enable = true;
33
- platformTheme.name = "gtk";
34
- style.name = "adwaita-dark";
35
+ # qt = {
+ # enable = true;
+ # platformTheme.name = "gtk";
+ # style.name = "adwaita-dark";
+ # };
36
}
0 commit comments