From 41e9b57b6f4b19df6139019ad0b4e16529d00107 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 11 Jan 2025 10:57:39 -0800 Subject: [PATCH] fix(home): Add check for linux before setting icons --- modules/home/options/theme/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/options/theme/default.nix b/modules/home/options/theme/default.nix index 71b43fa..9503a52 100644 --- a/modules/home/options/theme/default.nix +++ b/modules/home/options/theme/default.nix @@ -144,7 +144,7 @@ in { } # icons - (mkIf (cfg.icons != null) { + (mkIf ((cfg.icons != null) && (is-linux system)) { gtk = mkDefault { iconTheme = { inherit (cfg.icons) name;