my nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove gtk4 theme from adw-gtk3

chfour 7b05da3a 78510ba5

+11 -1
+11 -1
users/chfour/env-gnome.nix
··· 116 116 # gtk3 theme 117 117 theme = { 118 118 name = "adw-gtk3-dark"; 119 - package = pkgs.adw-gtk3; 119 + package = pkgs.stdenv.mkDerivation rec { 120 + pname = "adw-gtk3"; 121 + version = src.version; 122 + src = pkgs.adw-gtk3; 123 + installPhase = '' 124 + mkdir -p $out 125 + cp -r * $out/ 126 + # ensure only the gtk3 theme is there (the gtk4 one seems to be breaking things) 127 + rm -rf $out/share/themes/*/gtk-4.0 128 + ''; 129 + }; 120 130 }; 121 131 122 132 # buggy?