From e12aee3f4edaa88b379cb80181840e01bd13d56e Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 22 Mar 2025 13:15:31 -0400 Subject: [PATCH] macos: add maccy --- modules/home/darwin-only.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/darwin-only.nix b/modules/home/darwin-only.nix index 5b470ca..d552504 100644 --- a/modules/home/darwin-only.nix +++ b/modules/home/darwin-only.nix @@ -1,7 +1,12 @@ +{ pkgs, ... }: { imports = [ ./all/zsh.nix ./all/nushell.nix # ./all/emacs.nix ]; + + home.packages = with pkgs; [ + maccy + ]; }