magicwallet/shell.nix
ekzyis abad39a2bc Let it be hermes
* rename to hermes
* use echo+htmx+templ stack
* use code from delphi.market as scaffolding
2024-10-26 03:57:06 +02:00

19 lines
425 B
Nix

let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
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
'';
}