mirror of
https://github.com/nix-community/home-manager
synced 2024-11-21 20:23:08 +00:00
{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:
parent
d154a557da
commit
c7c2517612
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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.";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue