nix: initial nixos module; complete packaging

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I59ec5a4f67ddae2139e72ef4c0c113366a6a6964
This commit is contained in:
raf 2026-03-01 14:17:10 +03:00
commit 75018f69df
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
3 changed files with 223 additions and 10 deletions

View file

@ -2,13 +2,15 @@
mkShell,
go,
gopls,
golines,
delve,
}:
mkShell {
name = "go";
packages = [
delve
go
gopls
gopls # formatter
golines # line wrapper
delve # debugger
];
}