Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions doc/manual/source/installation/supported-platforms.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# Supported Platforms
## Supported Platforms

Nix is currently supported on the following platforms:

- Linux (i686, x86\_64, aarch64).
- **Linux** (`i686`, `x86_64`, `aarch64`)
- **macOS** (`x86_64`, `aarch64`)

- macOS (x86\_64, aarch64).
### macOS Support Details

| macOS Version | Status | Notes |
|---------------------|--------------|------------------------------------------------------------------------|
| 11.3 Big Sur | ✅ Supported | Minimum required version for stable builds |
| 12 Monterey | ✅ Supported | |
| 13 Ventura | ✅ Supported | |
| 14 Sonoma | ✅ Supported | Baseline version for upcoming Nixpkgs 25.11 release |
| 15 Sequoia | ✅ Supported\* | Requires migration script to fix `_nixbld1-4` user conflicts post-upgrade |

\* macOS 15 Sequoia introduces a change where system upgrade may overwrite the `_nixbld1–4` build users, which breaks Nix sandboxing. A [repair script](https://github.com/DeterminateSystems/nix-installer/releases/tag/v0.26.0) is available via the Determinate Nix Installer and upstream channels.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Linking to the determinate installer isn't right here. There's already a migration script in-tree: https://github.com/NixOS/nix/blob/master/scripts/sequoia-nixbld-user-migration.sh.


#### Architectures
- `x86_64` (Intel Macs)
- `aarch64` (Apple Silicon)

> ℹ️ Nixpkgs 25.11 and later may drop support for Sequoia and require macOS 14 Sonoma or newer.
Loading