9 lines
96 B
Nix
9 lines
96 B
Nix
{ pkgs ? import <nixpkgs> {}}:
|
|
|
|
pkgs.mkShell {
|
|
packages = [
|
|
pkgs.go
|
|
pkgs.gopls
|
|
];
|
|
}
|