diff options
-rw-r--r-- | usecases/desktop/graphical/gtk.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usecases/desktop/graphical/gtk.nix b/usecases/desktop/graphical/gtk.nix index 0151492..387d984 100644 --- a/usecases/desktop/graphical/gtk.nix +++ b/usecases/desktop/graphical/gtk.nix | |||
@@ -99,9 +99,11 @@ in { | |||
99 | enable = true; | 99 | enable = true; |
100 | iconTheme = { | 100 | iconTheme = { |
101 | # TODO: properly modify the colors | 101 | # TODO: properly modify the colors |
102 | package = pkgs.unstable.tela-circle-icon-theme.override { | 102 | # High priority, because gnome-themes-extra below also pulls the |
103 | # Adwaita icon theme, which leads to a conflict | ||
104 | package = lib.hiPrio (pkgs.unstable.tela-circle-icon-theme.override { | ||
103 | colorVariants = ["brown"]; | 105 | colorVariants = ["brown"]; |
104 | }; | 106 | }); |
105 | name = "Tela-circle-brown-dark"; | 107 | name = "Tela-circle-brown-dark"; |
106 | }; | 108 | }; |
107 | 109 | ||