Files
shed/glasshouse-laptop/home/scripts/crs.nix
2024-10-12 17:17:10 -04:00

11 lines
124 B
Nix

{ pkgs }:
{
crs = pkgs.writeShellScriptBin "crs" (''
#!/run/current-system/sw/bin/bash
cargo test && \
cargo run
'');
}