mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
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
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ let
|
|||
package = mkOption {
|
||||
type = types.nullOr types.package;
|
||||
default = null;
|
||||
example = literalExpression "pkgs.gnome.gnome_themes_standard";
|
||||
example = literalExpression "pkgs.gnome.gnome-themes-extra";
|
||||
description = ''
|
||||
Package providing the theme. This package will be installed
|
||||
to your profile. If <literal>null</literal> then the theme
|
||||
|
@ -51,7 +51,7 @@ let
|
|||
package = mkOption {
|
||||
type = types.nullOr types.package;
|
||||
default = null;
|
||||
example = literalExpression "pkgs.adwaita-icon-theme";
|
||||
example = literalExpression "pkgs.gnome.adwaita-icon-theme";
|
||||
description = ''
|
||||
Package providing the icon theme. This package will be installed
|
||||
to your profile. If <literal>null</literal> then the theme
|
||||
|
|
Loading…
Reference in a new issue