From 11126aed45f5edf3a7895a4529c167e6ae2b736e Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Mon, 16 Dec 2024 00:01:10 +0100 Subject: [PATCH] modules/theme/gtk: switch to papirus dark icons --- modules/theme/gtk.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/theme/gtk.nix b/modules/theme/gtk.nix index 54a9acf..5480549 100644 --- a/modules/theme/gtk.nix +++ b/modules/theme/gtk.nix @@ -34,13 +34,16 @@ in { name = mkOption { type = str; description = "The name for the icon theme that will be used for GTK programs"; - default = "rose-pine"; + default = "Papirus-Dark"; }; package = mkOption { type = package; description = "The GTK icon theme to be used"; - default = pkgs.rose-pine-icon-theme; + default = pkgs.catppuccin-papirus-folders.override { + flavor = "mocha"; + accent = "lavender"; + }; }; }; };