website/shell.nix
2024-08-21 15:53:08 +02:00

7 lines
130 B
Nix

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