AnthoLume/shell.nix
Evan Reichard 0bbd5986cb
All checks were successful
continuous-integration/drone/push Build is passing
add: db migrations & update
2024-01-25 19:22:57 -05:00

13 lines
199 B
Nix

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