From 8569d84f5b51a71e03e59183bffbf0cc50153569 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 11 Feb 2025 15:46:52 +0100 Subject: [PATCH] options/style: switch icon theme to MoreWaita --- modules/options/style.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/options/style.nix b/modules/options/style.nix index 62e45de..3af2e92 100644 --- a/modules/options/style.nix +++ b/modules/options/style.nix @@ -80,7 +80,7 @@ in { name = mkOption { type = str; description = "Name for the GTK theme"; - default = "adw-gtk3"; + default = "adw-gtk3-dark"; }; package = mkOption { type = package; @@ -94,13 +94,15 @@ in { name = mkOption { type = str; description = "The name for the icon theme that will be used for GTK programs"; - default = "kora"; + default = "MoreWaita"; }; package = mkOption { type = package; description = "The GTK icon theme to be used"; - default = pkgs.kora-icon-theme; + default = pkgs.morewaita-icon-theme.overrideAttrs { + src = inputs.morewaita; + }; }; }; };