Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 531 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 531 Bytes

Mise Nix Flake Plugin

Enable flake development environments, equivalent to nix develop.

Installation

To install the nix plugin, run:

$ mise plugins install nix

Configuration

In .mise.toml, enable the nix environment:

[env]
_.nix = true

This will automatically load the development environment from flake.nix, equivalent to entering the shell via nix develop.

To use a different lock-file, set the flake_lock option:

[env]
_.nix = { flake_lock = "some-flake.lock" }