GNOME: Difference between revisions

Honnip (talk | contribs)
No edit summary
Normalcea (talk | contribs)
Remove section on adwaita icons as GNOME upstream have clarified that it is not a freedesktop compliant icon theme. https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/issues/288
Line 208: Line 208:
   programs.dconf.enable = true;
   programs.dconf.enable = true;
}
}
</syntaxHighlight>
</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">
 
Many applications rely heavily on having an icon theme available, GNOME’s Adwaita is a good choice but most recent icon themes should work as well.
 
<syntaxhighlight lang="nix">
{
  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 ];
   environment.systemPackages = [ pkgs.gnome-themes-extra ];