Open ners opened 1 year ago
Currently nix-monitored converts nix run <flake-ref> to nix build <flake-ref> && nix run <flake-ref>. This breaks for flake apps outputs, where what we should actually build is <flake-ref>.program.
nix run <flake-ref>
nix build <flake-ref> && nix run <flake-ref>
apps
<flake-ref>.program
Currently nix-monitored converts
nix run <flake-ref>
tonix build <flake-ref> && nix run <flake-ref>
. This breaks for flakeapps
outputs, where what we should actually build is<flake-ref>.program
.