mirror of
https://github.com/Noratrieb/website.git
synced 2026-01-14 08:55:01 +01:00
8 lines
141 B
Nix
8 lines
141 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
rustup
|
|
hugo
|
|
nodejs
|
|
nodePackages.live-server
|
|
];
|
|
}
|