nixos-config/shells/hugo.nix

19 lines
373 B
Nix

# My usual toolchain for developing Hugo projects.
{ mkShell
, hugo
, git
, go
, nodejs_latest
, imagemagick
}:
mkShell {
packages = [
hugo # The main tool.
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.
];
}