slides/shell.nix
2024-01-03 15:30:47 +01:00

3 lines
85 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
packages = with pkgs; [ nodejs ];
}