nixos-config/shells/hugo.nix
Gabriel Arazas 4cae5c709b
shells/hugo: update NodeJS 16 with latest version
This is to prevent periodic update with NodeJS versions being insecure
at some point.
2023-07-14 14:44:16 +08:00

12 lines
298 B
Nix

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