git-repo-updater/flake-modules/dev-shell.nix
2025-07-31 23:47:44 +01:00

19 lines
244 B
Nix

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