diff --git a/darwin/gammabook/default.nix b/darwin/gammabook/default.nix index b44bcaa4..8b0ee8c2 100644 --- a/darwin/gammabook/default.nix +++ b/darwin/gammabook/default.nix @@ -5,6 +5,18 @@ lib, ... }: + +let + packages = with pkgs; [ + nodejs + yarn + nodePackages.typescript-language-server + awscli2 + mkcert + clickhouse + clickhouse-cli + ]; +in { imports = [ self.darwinModules.common @@ -35,6 +47,8 @@ programs.kitty.enable = true; + home.packages = packages; + home.stateVersion = "22.11"; };