All checks were successful
Deploy / deploy (push) Successful in 1m28s
Check if starship is installed before invoking. (It should be, but let's be careful.)
16 lines
259 B
Nix
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)"
|
|
'';
|
|
}
|