nix-config/packages/vix.nix
2025-07-11 11:46:01 +01:00

10 lines
148 B
Nix
Executable file

{ pkgs }:
pkgs.writeShellApplication {
name = "vix";
text = ''
cmd=$(command -v "$1")
test -n "$cmd" && exec "$EDITOR" "$cmd"
'';
}