diff --git a/shells/hugo.nix b/shells/hugo.nix index c1ac1853..9d3f5818 100644 --- a/shells/hugo.nix +++ b/shells/hugo.nix @@ -1,5 +1,11 @@ # My usual toolchain for developing Hugo projects. -{ mkShell, hugo, git, go, nodejs_latest }: +{ mkShell +, hugo +, git +, go +, nodejs_latest +, imagemagick +}: mkShell { packages = [ @@ -7,5 +13,6 @@ mkShell { go # I might use Go modules which requires the Golang runtime. git # VCS of my choice. nodejs_latest # The supported NodeJS version. + imagemagick # Everyman's image processing framework. ]; }