modulecomma{# Run a command if known, otherwise run it with nix
exportdef,[cmd:string# The command to run
...args:string# Command arguments; all flags MUST be quoted
]{if(not(which$cmd|is-empty)){^$cmd...$argsreturn}^nixrun$"nixpkgs#($cmd)"--...$args}}usecomma*