This repository has been archived on 2025-08-05. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
learn-go-with-tests/flake-modules/dev-shell.nix

19 lines
229 B
Nix
Raw Permalink Normal View History

2025-07-29 21:54:35 +01:00
{ inputs, ... }:
{
imports = [
inputs.devshell.flakeModule
];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
go
gopls
];
};
};
}