GNOME: Difference between revisions
No edit summary |
Minijackson (talk | contribs) Add mention about missing gnome-themes-extra and gtk-3.0 application not respecting dark theme |
||
| Line 210: | Line 210: | ||
{ | { | ||
environment.systemPackages = [ pkgs.adwaita-icon-theme ]; | environment.systemPackages = [ pkgs.adwaita-icon-theme ]; | ||
} | |||
</syntaxhighlight>If you're using the default theme, GTK-3 applications may not respect the dark theme if they can't find the Adwaita. To fix it, make sure you have the <code>gnome-themes-extra</code> package installed:<syntaxhighlight lang="nix"> | |||
{ | |||
environment.systemPackages = [ pkgs.gnome-themes-extra ]; | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||