Files
fabula-ultima-html/shell.nix
Drew Malzahn b868d3d2ec
All checks were successful
Deploy / deploy (push) Successful in 1m28s
nix: Safer shellHook
Check if starship is installed before invoking. (It should be, but let's
be careful.)
2026-07-04 12:39:44 -04:00

16 lines
259 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = with pkgs; [
go
gopls
just
nodejs
starship
typescript-language-server
];
shellHook = ''
which -s starship >/dev/null 2>&1 && eval "$(starship init bash)"
'';
}