mirror of
https://github.com/Noratrieb/website.git
synced 2026-03-14 21:26:09 +01:00
7 lines
112 B
Nix
7 lines
112 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
rustup
|
|
hugo
|
|
nodejs
|
|
];
|
|
}
|