fix(home/appearance): Don't install icon theme on mac

This commit is contained in:
punkfairie 2025-03-22 15:44:35 -07:00
parent d1f0a93fa7
commit 9bf7370584
Signed by: punkfairie
GPG key ID: 8CEDBFDF5C0D613D

View file

@ -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
];
]);
};
}