mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
12 lines
294 B
Nix
12 lines
294 B
Nix
|
# My usual toolchain for developing Hugo projects.
|
||
|
{ mkShell, hugo, git, go, nodejs-16_x }:
|
||
|
|
||
|
mkShell {
|
||
|
packages = [
|
||
|
hugo # The main tool.
|
||
|
go # I might use Go modules which requires the Golang runtime.
|
||
|
git # VCS of my choice.
|
||
|
nodejs-16_x # The supported NodeJS version.
|
||
|
];
|
||
|
}
|