bs1in/shell.nix

8 lines
104 B
Nix

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
go_1_19
gopls
];
}