Matthew Kenigsberg
Matthew Kenigsberg
Thanks for the reproducer! I think we may not be treating the `3.11` version requirement quite right. If you set `python = "=3.11"` do you get closer to the behavior...
> * Do we support Poetry versions older than 2 (which was released in January)? > * If so, we need to generate setup hooks for different versions We have...
Interesting, I couldn't reproduce with the activation in `.zprofile`, but I could in `.zshrc`
I'm also seeing vars from `hook.on-activate` not set when I `eval "$(flox activate)"` in my .zprofile, but they are getting set from .zshrc. That almost seems backwards from this bug,...
> I'm also seeing vars from `hook.on-activate` not set when I `eval "$(flox activate)"` in my .zprofile, but they are getting set from .zshrc. That almost seems backwards from this...
We're treating `~/.cache/flox/run` as `XDG_RUNTIME_DIR`, which per XDG spec: The directory MUST be owned by the user, and they MUST be the only one having read and write access to...
For daemon garbage collection: - min-free: 10% or 1 GB - max-free: change it to nix default (cleans everything)
It's possible some of these are from running with `-v`
The tradeoff with always using `--refresh` is that something like `flox install flake#pkg1 && flox install flake#pkg2` will be slower. And if you have `flake#pkg1` and `flake#pkg2` in your manifest,...
Seems like we should check if `bin` does not exist, and if it doesn't, find any executables in the build output. - Should we use `find` or write something in...