watchdog/nix/shell.nix
NotAShelf 75018f69df
nix: initial nixos module; complete packaging
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I59ec5a4f67ddae2139e72ef4c0c113366a6a6964
2026-03-02 22:38:08 +03:00

16 lines
175 B
Nix

{
mkShell,
go,
gopls,
golines,
delve,
}:
mkShell {
name = "go";
packages = [
go
gopls # formatter
golines # line wrapper
delve # debugger
];
}