Examples (7)
Run the default application in the flake in the current directory
Run a command whose name matches the package name from nixpkgs (if you want a different command from that package, see `tldr nix shell`)
nix run nixpkgs#pkgRun a command with provided arguments
nix run nixpkgs#vim -- path/to/fileRun from a remote repository
nix run remote_name:owner/repositoryRun from a remote repository using a specific tag, revision, or branch
nix run remote_name:owner/repository/referenceRun from a remote repository specifying a subdirectory and a program
nix run "remote_name:owner/repository?dir=dir_name#app"Run the flake of a GitHub pull request
nix run github:owner/repository/pull/number/headmade by @shridhargupta | data from tldr-pages