Want to contribute? Fork me on Codeberg.org!
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
jichan.org-go/shell.nix

12 lines
160 B

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
go
gopls
];
shellHook = ''
export PATH="$HOME/go/bin:$PATH"
'';
}