Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions internal/nix/nix-shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ func RenderShell(cfg core.Configuration, sr golang.ScanResult, renderGoreleaserC
if sr.UsesPostgres {
packages = append(packages, "postgresql_"+core.DefaultPostgresVersion)
}
if cfg.Reuse.Enabled.UnwrapOr(true) {
packages = append(packages, "reuse")
}
packages = append(packages, cfg.Nix.ExtraPackages...)

slices.Sort(packages)
Expand Down
1 change: 1 addition & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ mkShell {
go_1_24
golangci-lint
gotools # goimports
reuse
# keep this line if you use bash
bashInteractive
];
Expand Down
Loading