Last active 1711039513

Revision ab30fea92b45539f6ce0c0efe143218331252d3d

comma.nu Raw
1# Run a command if known, otherwise run it with nix
2def , [cmd: string, ...args: string] {
3 if (not (which $cmd | is-empty)) {
4 ^$cmd ...$args
5 return
6 }
7 ^nix run $"nixpkgs#($cmd)" -- ...$args
8}
9