website/shell.nix

8 lines
141 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
packages = with pkgs; [
rustup
hugo
nodejs
nodePackages.live-server
];
}