{ description = "Template"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.11"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in { devShells.default = pkgs.mkShell { buildInputs = with pkgs; [ go gopls gotools go-tools cobra-cli ]; shellHook = '' echo "Welcome!" ''; }; } ); }