From ceac787218190dbd6d02c59bf0320c01c6ba5672 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Mon, 10 Feb 2025 17:37:41 +0100 Subject: [PATCH] options/style: switch to kora as default icon theme --- modules/options/style.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/modules/options/style.nix b/modules/options/style.nix index 129b84c..9b99ffd 100644 --- a/modules/options/style.nix +++ b/modules/options/style.nix @@ -94,16 +94,13 @@ in { name = mkOption { type = str; description = "The name for the icon theme that will be used for GTK programs"; - default = "Papirus-Dark"; + default = "Kora"; }; package = mkOption { type = package; description = "The GTK icon theme to be used"; - default = pkgs.catppuccin-papirus-folders.override { - flavor = "mocha"; - accent = "lavender"; - }; + default = pkgs.kora-icon-theme; }; }; };