2024-10-25 02:32:25 +00:00
|
|
|
let
|
2024-12-15 20:38:07 +00:00
|
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.11";
|
2024-10-25 02:32:25 +00:00
|
|
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
|
|
in
|
|
|
|
|
|
|
|
pkgs.mkShell {
|
|
|
|
packages = with pkgs; [
|
|
|
|
go
|
|
|
|
tailwindcss
|
|
|
|
gnumake
|
|
|
|
inotify-tools
|
|
|
|
figlet
|
|
|
|
postgresql
|
|
|
|
];
|
|
|
|
shellHook = ''
|
|
|
|
# install templ if not already installed
|
|
|
|
command -v templ > /dev/null || go install github.com/a-h/templ/cmd/templ@latest
|
|
|
|
'';
|
|
|
|
}
|