From 9bf7370584915cfa76c46b0e99228fccdd3bc4df Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 22 Mar 2025 15:44:35 -0700 Subject: [PATCH] fix(home/appearance): Don't install icon theme on mac --- modules/home/appearance/base/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/appearance/base/default.nix b/modules/home/appearance/base/default.nix index 8c47535..81ceb35 100644 --- a/modules/home/appearance/base/default.nix +++ b/modules/home/appearance/base/default.nix @@ -37,8 +37,8 @@ in { fonts.sizes.terminal = lib.mkIf (is-darwin system) 14; }; - home.packages = with pkgs; [ + home.packages = lib.mkIf (!(is-darwin system)) (with pkgs; [ kora-icon-theme - ]; + ]); }; }