You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2023. It is now read-only.
In order for stack to work properly in a NixOS environment, it is (sadly) required to pass a --nix flag every-time it is called.
Which mean that, at the moment, if you try to run codex in a stack project on NixOS, it will initially fail.
A workaround, is to edit the project stack.yaml and add nix: enable: true, which is sub-optimal as one might one to keep that only for his local project (and not pollute remote with that change).
Ideally we would like a "stackNixEnable: true" in .codex that will automatically add --nix on every stack call.
In order for stack to work properly in a
NixOSenvironment, it is (sadly) required to pass a--nixflag every-time it is called.Which mean that, at the moment, if you try to run
codexin a stack project on NixOS, it will initially fail.A workaround, is to edit the project
stack.yamland addnix: enable: true, which is sub-optimal as one might one to keep that only for his local project (and not pollute remote with that change).Ideally we would like a "stackNixEnable: true" in
.codexthat will automatically add--nixon every stack call.