From 584d9c57a8550bace5ffa2901dfebbde367bea54 Mon Sep 17 00:00:00 2001 From: Karun Sandhu <129101708+MrSom3body@users.noreply.github.com> Date: Thu, 4 Sep 2025 06:42:07 +0200 Subject: [PATCH] fnott: set icon theme (#1873) Link: https://github.com/nix-community/stylix/pull/1873 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: awwpotato --- modules/fnott/hm.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/fnott/hm.nix b/modules/fnott/hm.nix index d9e731a4..3d26fdb5 100644 --- a/modules/fnott/hm.nix +++ b/modules/fnott/hm.nix @@ -48,5 +48,12 @@ mkTarget { }; } ) + ( + { polarity, icons }: + { + services.fnott.settings.main."icon-theme" = + if (polarity == "dark") then icons.dark else icons.light; + } + ) ]; }