mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
4cae5c709b
This is to prevent periodic update with NodeJS versions being insecure at some point.
12 lines
298 B
Nix
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.
|
|
];
|
|
}
|