From 07482556dc38c0d9f28ffdc3d25009ce9dbbdd22 Mon Sep 17 00:00:00 2001 From: Karun Sandhu <129101708+MrSom3body@users.noreply.github.com> Date: Sat, 26 Jul 2025 15:54:42 +0200 Subject: [PATCH 1/2] fuzzel: add MrSom3body as a maintainer --- modules/fuzzel/meta.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/fuzzel/meta.nix b/modules/fuzzel/meta.nix index dfa8ddfb..1d052378 100644 --- a/modules/fuzzel/meta.nix +++ b/modules/fuzzel/meta.nix @@ -1,5 +1,6 @@ +{ lib, ... }: { name = "Fuzzel"; homepage = "https://codeberg.org/dnkl/fuzzel"; - maintainers = [ ]; + maintainers = [ lib.maintainers.MrSom3body ]; } From 3a7b869cd61c0db5ca369d39632d64a6e45a41f2 Mon Sep 17 00:00:00 2001 From: Karun Sandhu <129101708+MrSom3body@users.noreply.github.com> Date: Sat, 26 Jul 2025 15:57:16 +0200 Subject: [PATCH 2/2] fuzzel: fix icons not being set correctly --- modules/fuzzel/hm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fuzzel/hm.nix b/modules/fuzzel/hm.nix index 156187c5..29b4836f 100644 --- a/modules/fuzzel/hm.nix +++ b/modules/fuzzel/hm.nix @@ -35,7 +35,7 @@ mkTarget { ( { polarity, icons }: { - programs.fuzzel.settings.main."icons" = + programs.fuzzel.settings.main."icon-theme" = if (polarity == "dark") then icons.dark else icons.light; } )