Files
realm/shell.nix
2024-10-12 20:33:13 +02:00

7 lines
86 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
zig
];
}