Files
shed/modules/home/scripts/commands/invoke.nix
2024-11-02 17:12:00 -04:00

10 lines
113 B
Nix
Executable File

{
self,
pkgs,
}:
pkgs.writeShellScriptBin "invoke" ''
cmd="$1"
shift
nix run nixpkgs#"$cmd" -- "$@"
''