diff --git a/darwin/homebrew.nix b/darwin/homebrew.nix index c0676dc..af44a71 100644 --- a/darwin/homebrew.nix +++ b/darwin/homebrew.nix @@ -29,6 +29,7 @@ "dash" "discord" "docker" + "element" "fantastical" "figma" "firefox" @@ -38,6 +39,7 @@ "google-chrome" "gpg-suite" "hazel" + "ipfs" "iterm2" "keybase" "logitech-options" diff --git a/modules/nodejs.nix b/modules/nodejs.nix index ebc3c1f..6db8b53 100644 --- a/modules/nodejs.nix +++ b/modules/nodejs.nix @@ -1,5 +1,10 @@ { config, lib, pkgs, ... }: { - home.packages = with pkgs; [ nodejs nodePackages.js-beautify yarn ]; + home.packages = with pkgs; [ + nodejs + nodePackages.js-beautify + nodePackages.prettier + yarn + ]; }