jbadeau/mise-nix
A backend plugin for Mise that allows you to install and manage packages using Nix
{ "createdAt": "2025-07-16T12:38:42Z", "defaultBranch": "main", "description": "A backend plugin for Mise that allows you to install and manage packages using Nix", "fullName": "jbadeau/mise-nix", "homepage": "", "language": "Lua", "name": "mise-nix", "pushedAt": "2025-11-26T06:04:08Z", "stargazersCount": 83, "topics": [ "asdf", "devbox", "devenv", "flake", "flox", "home-manger", "manager", "mise", "nix", "plugin", "tools" ], "updatedAt": "2025-11-26T06:04:13Z", "url": "https://github.com/jbadeau/mise-nix"}mise-nix
Section titled “mise-nix”A Mise plugin that brings the power of the Nix ecosystem to your development workflow.
Features
Section titled “Features”- 🚀 100,000+ packages from nixpkgs
- 🔌 VSCode extensions support
- 🔌 JetBrains plugins support
Prerequisites
Section titled “Prerequisites”Installation
Section titled “Installation”mise plugin install nix https://github.com/jbadeau/mise-nix.gitQuick Start
Section titled “Quick Start”# List available versionsmise ls-remote nix:hello
# Install versionmise install nix:hello@2.12.1Standard Packages (Recommended)
Section titled “Standard Packages (Recommended)”Uses nixhub.io for pre-built, cached packages:
# Latest versionmise install nix:hello
# Specific versionmise install nix:hello@2.12.1
# Version aliasesmise install nix:hello@stableFlake References
Section titled “Flake References”# GitHubmise install "nix:hello@github+nixos/nixpkgs"mise install "nix:hello@nixos/nixpkgs#hello"
# GitLabmise install "nix:mytool@gitlab+group/project"
# Git URLsmise install "nix:hello@git+https://github.com/nixos/nixpkgs.git"Local Flakes
Section titled “Local Flakes”export MISE_NIX_ALLOW_LOCAL_FLAKES=truemise install "nix:mytool@./my-project"VSCode Extensions
Section titled “VSCode Extensions”mise install "nix:vscode+install=vscode-extensions.golang.go"JetBrains Plugins
Section titled “JetBrains Plugins”Install plugins from the nix-jetbrains-plugins repository:
# Install File Watchers plugin for IntelliJ IDEA Ultimate (Linux)mise install "nix:jetbrains+install=jetbrains-plugins.x86_64-linux.idea-ultimate.2024.3.com.intellij.plugins.watcher"
# Install File Watchers plugin for IntelliJ IDEA Ultimate (macOS)mise install "nix:jetbrains+install=jetbrains-plugins.aarch64-darwin.idea-ultimate.2024.3.com.intellij.plugins.watcher"
# Install GitToolBox for GoLandmise install "nix:jetbrains+install=jetbrains-plugins.x86_64-linux.goland.2024.3.zielu.gittoolbox"
# Install Database Tools for WebStormmise install "nix:jetbrains+install=jetbrains-plugins.x86_64-linux.webstorm.2024.3.com.intellij.database"The plugin will be automatically extracted to the correct JetBrains IDE plugin directory. Restart your IDE to activate the installed plugins.
Notes:
- The system architecture (e.g.,
x86_64-linux,aarch64-darwin) must match your current system - Plugins are built directly from the nix-jetbrains-plugins flake repository without querying nixhub
- You can find plugin IDs at the bottom of JetBrains Marketplace pages
Limitations
Section titled “Limitations”Use github+ instead of github: due to mise parsing limitations.
Configuration
Section titled “Configuration”Environment variables can be used to configure this plugin, if needed. Some use cases are the following:
export MISE_NIX_ALLOW_LOCAL_FLAKES=true # Enable local flakesexport MISE_NIX_NIXHUB_BASE_URL="https://custom.nixhub.io" # Custom nixhubNix Setup
Section titled “Nix Setup”Add to ~/.config/nix/nix.conf:
experimental-features = nix-command flakessubstituters = https://cache.nixos.org https://nix-community.cachix.orgtrusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:0VI8sF6Vsp2Jxw8+OFeVfYVdIY7X+GTtY+lR78QAbXs=Development
Section titled “Development”# Setupmise init # Install and link
# Testsmise test # Unit testsmise e2e # Integration tests