lab/learn-go-with-tests/flake-modules/dev-shell.nix

19 lines
229 B
Nix
Raw Normal View History

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