added simple zig

This commit is contained in:
2025-08-29 21:54:26 +03:00
parent 36fae0f0df
commit 63a88e8cc5

7
zig.nix Normal file
View File

@@ -0,0 +1,7 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = with pkgs; [
zig
];
shellHook = "";
}