summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2023-04-15 11:20:58 +0200
committerMinijackson <minijackson@riseup.net>2023-04-15 11:20:58 +0200
commit90e2ef643a43ea31df8056dd9591102e1a1f99ca (patch)
tree21c4fe88bc660d8cbb418bd93536ba0d0209f313
parent5e2fbecae86ce9a55dd21623bf6aae202b11e0be (diff)
downloadnixos-config-reborn-90e2ef643a43ea31df8056dd9591102e1a1f99ca.tar.gz
nixos-config-reborn-90e2ef643a43ea31df8056dd9591102e1a1f99ca.zip
gtk: set hiPrio to the Tela icon theme
because of file conflict
-rw-r--r--usecases/desktop/graphical/gtk.nix6
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