{gtk, dunst}: replace pkgs.gnome.adwaita-icon-theme with pkgs.adwaita-icon-theme in the examples (#5712)

`adwaita-icon-theme` has been moved out of the `gnome` scope and into the top level with https://github.com/NixOS/nixpkgs/pull/319659
This commit is contained in:
Nanotwerp 2024-11-16 13:36:13 -05:00 committed by GitHub
parent d154a557da
commit c7c2517612
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ let
package = mkOption {
type = types.nullOr types.package;
default = null;
example = literalExpression "pkgs.gnome.adwaita-icon-theme";
example = literalExpression "pkgs.adwaita-icon-theme";
description = ''
Package providing the icon theme. This package will be installed
to your profile. If `null` then the theme

View file

@ -25,7 +25,7 @@ let
options = {
package = mkOption {
type = types.package;
example = literalExpression "pkgs.gnome.adwaita-icon-theme";
example = literalExpression "pkgs.adwaita-icon-theme";
description = "Package providing the theme.";
};