Initial commit

This commit is contained in:
Nettika 2026-01-25 14:25:15 -08:00
commit fac1341c1f
Signed by: nettika
SSH key fingerprint: SHA256:f+PJrfIq49zrQ6dQrHj18b+PJKmAldeAMiGdj8IzXCA
4 changed files with 30 additions and 0 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
cargo
just
];
}