-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
This is not a short term bug, but it will become an issue when macOS Catalina is released this fall. macOS is now split across two volumes (system and data) with a read-only system volume. This means that /nix
will no longer be writable.
Some more information can be found in the related WWDC talk and some session notes people took from a Q&A.
Summary: the system volume, which is mounted at /
will become non-writable. Some directories that need to be writable are connected via firmlinks (an Apple invention) to the data volume. /nix
is not among these locations, so with the release of macOS Catalina, this location is no longer an option.
I see two possible solutions:
- I could try and file a bug to convince Apple to pre-install
/nix
as a firmlink to a writable location. I think this has limited success and Nix would then depend on Apple to not drop this link in a future release. - We could move Nix on macOS to a different default location. Possible locations are those that Apple chooses to pre-install as links to writable locations. Two examples are
/usr/local
and/opt
, so we could move to/usr/local/nix
or/opt/nix
. I would hope that these locations are common enough so that Apple would not drop them in the future.
I wanted to raise this issue early, before it becomes a problem for users. If this issue tracker is not the right place, please feel free to move this discussion elsewhere. I would also be available for testing any potential solution, since I have access to a macOS Catalina beta.