nixos-configs/homeManagerModules/neovim/langs/golang/shell.nix

12 lines
86 B
Nix

{
mkShell,
go,
gopls,
...
}:
mkShell {
packages = [
go
gopls
];
}