From c7c251761235282acfc681accf8d3deea6681cc0 Mon Sep 17 00:00:00 2001 From: Nanotwerp Date: Sat, 16 Nov 2024 13:36:13 -0500 Subject: [PATCH] {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 --- modules/misc/gtk.nix | 2 +- modules/services/dunst.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/misc/gtk.nix b/modules/misc/gtk.nix index e1ae250fd..65ed1de2f 100644 --- a/modules/misc/gtk.nix +++ b/modules/misc/gtk.nix @@ -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 diff --git a/modules/services/dunst.nix b/modules/services/dunst.nix index 5bd82a399..6b2727b3f 100644 --- a/modules/services/dunst.nix +++ b/modules/services/dunst.nix @@ -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."; };