nixos-config/shells/hugo.nix

12 lines
298 B
Nix
Raw Normal View History

2021-12-16 09:16:31 +00:00
# My usual toolchain for developing Hugo projects.
{ mkShell, hugo, git, go, nodejs_latest }:
2021-12-16 09:16:31 +00:00
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.
2021-12-16 09:16:31 +00:00
];
}