VReader/shell.nix

9 lines
125 B
Nix
Raw Normal View History

2023-11-11 02:09:31 +00:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
2023-11-11 21:41:25 +00:00
nodePackages.tailwindcss
2023-11-11 02:09:31 +00:00
python311
];
}