gtk: Update example strings for gtk.theme.package (#2904)
- Change the example value of `gtk.theme.package` from `pkgs.gnome.gnome_themes_standard` was an alias that was removed on 2022-01-13, `pkgs.gnome-themes-extra`, which references the actual package. - Change the example value of `gtk.icon.package` from `pkgs.adwaita-icon-theme` to `pkgs.gnome.adwaita-icon-theme`, as this package is in the `gnome` package set.
This commit is contained in:
parent
538343be86
commit
882bd8118b
|
@ -30,7 +30,7 @@ let
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.nullOr types.package;
|
type = types.nullOr types.package;
|
||||||
default = null;
|
default = null;
|
||||||
example = literalExpression "pkgs.gnome.gnome_themes_standard";
|
example = literalExpression "pkgs.gnome.gnome-themes-extra";
|
||||||
description = ''
|
description = ''
|
||||||
Package providing the theme. This package will be installed
|
Package providing the theme. This package will be installed
|
||||||
to your profile. If <literal>null</literal> then the theme
|
to your profile. If <literal>null</literal> then the theme
|
||||||
|
@ -51,7 +51,7 @@ let
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.nullOr types.package;
|
type = types.nullOr types.package;
|
||||||
default = null;
|
default = null;
|
||||||
example = literalExpression "pkgs.adwaita-icon-theme";
|
example = literalExpression "pkgs.gnome.adwaita-icon-theme";
|
||||||
description = ''
|
description = ''
|
||||||
Package providing the icon theme. This package will be installed
|
Package providing the icon theme. This package will be installed
|
||||||
to your profile. If <literal>null</literal> then the theme
|
to your profile. If <literal>null</literal> then the theme
|
||||||
|
|
Loading…
Reference in a new issue