Skip to content

Installation

Nexis ships native installers for every desktop platform. Pick your OS below, or jump to building from source.

Every release is published on the GitHub releases page with builds for:

Platform Formats
Linux .deb, .rpm, AppImage, AUR package
macOS .dmg (Apple Silicon & Intel)
Windows NSIS installer, MSI

Nexis includes an auto-updater, so once installed it can keep itself current.

  • Linux — packages, the AppImage, and the AUR.
  • macOS — the .dmg and Gatekeeper notes.
  • Windows & WSL — installers, SmartScreen, and WSL.

Nexis is a Tauri 2 app. To build it yourself you’ll need:

Terminal window
pnpm install
pnpm tauri dev # dev build with hot reload
pnpm tauri build # production build for your platform

Run the test suites with:

Terminal window
pnpm test # Vitest unit tests (front end)
cd src-tauri && cargo test # Rust unit tests (backend)