/ shell.nix
shell.nix
 1  { pkgs ? import <nixpkgs> {} }:
 2  
 3  pkgs.mkShell {
 4    buildInputs = [
 5      pkgs.go_1_22
 6    ];
 7  
 8    shellHook = ''
 9    '';
10  }
11