AnthoLume/shell.nix
Evan Reichard d70a506b82
Some checks reported errors
continuous-integration/drone/push Build was killed
geez
2024-10-05 20:21:32 -04:00

15 lines
220 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
go
nodejs
nodePackages.tailwindcss
templ
python311Packages.grip
];
shellHook = ''
export PATH=$PATH:~/go/bin
'';
}