mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
shells/hugo: update NodeJS 16 with latest version
This is to prevent periodic update with NodeJS versions being insecure at some point.
This commit is contained in:
parent
214ea6fa6d
commit
4cae5c709b
@ -1,11 +1,11 @@
|
|||||||
# My usual toolchain for developing Hugo projects.
|
# My usual toolchain for developing Hugo projects.
|
||||||
{ mkShell, hugo, git, go, nodejs-16_x }:
|
{ mkShell, hugo, git, go, nodejs_latest }:
|
||||||
|
|
||||||
mkShell {
|
mkShell {
|
||||||
packages = [
|
packages = [
|
||||||
hugo # The main tool.
|
hugo # The main tool.
|
||||||
go # I might use Go modules which requires the Golang runtime.
|
go # I might use Go modules which requires the Golang runtime.
|
||||||
git # VCS of my choice.
|
git # VCS of my choice.
|
||||||
nodejs-16_x # The supported NodeJS version.
|
nodejs_latest # The supported NodeJS version.
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user