mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
bc2e4ccf64
Most of the things added will be inputs from larger dependencies.
16 lines
122 B
Nix
16 lines
122 B
Nix
{ mkShell
|
|
, go
|
|
, gofumpt
|
|
, gopls
|
|
}:
|
|
|
|
mkShell {
|
|
packages = [
|
|
go
|
|
gofumpt
|
|
gopls
|
|
];
|
|
|
|
inputsFrom = [ go ];
|
|
}
|