1{ 2 perSystem = { pkgs, ... }: { 3 devShells.default = pkgs.mkShell { 4 packages = with pkgs; [ 5 go 6 gopls 7 go-tools 8 ]; 9 }; 10 }; 11}