lab/learn-go-with-tests/flake-modules/dev-shell.nix
Oliver Davies b7c3fffbaa Move from learn-go-with-tests
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-09-25 13:42:49 +01:00

18 lines
229 B
Nix

{ inputs, ... }:
{
imports = [
inputs.devshell.flakeModule
];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
go
gopls
];
};
};
}