Files
nixos-dotfiles/templates/shell-go.nix
T
ulveandClaude Sonnet 4.6 f7e1f95746 initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-12 21:25:11 +02:00

11 lines
162 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
go
gopls
gofumpt
revive
# add project-specific packages below
];
}