1
0
Fork 0
food-site/shell.nix

5 lines
91 B
Nix
Raw Normal View History

2022-05-31 22:00:53 +01:00
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
packages = with pkgs; [
nodejs
];
}