Update deps, add nixos and devenv

This commit is contained in:
2025-03-13 21:38:32 +03:00
parent 60ea3fc59b
commit ca9d20e2a2
7 changed files with 183 additions and 1 deletions

23
devenv.nix Normal file
View File

@@ -0,0 +1,23 @@
{
pkgs,
nixpkgs_stable,
...
}:
{
packages = [
pkgs.git
pkgs.go_1_23
];
enterShell = ''
git --version
go version
'';
enterTest = ''
echo "Running tests"
go test -race ./...
'';
}