Inputs
Inputs allow you to refer to Nix code outside of your project while preserving reproducibility.
Think of inputs as dependency management for your developer environment.
If you omit devenv.yaml, it defaults to:
inputs:
nixpkgs:
url: github:NixOS/nixpkgs/nixpkgs-unstable
pre-commit-hooks:
url: github:cachix/pre-commit-hooks.nix
The dependencies you mention as inputs are passsed as an argument to the function.
For example, if you have a devenv.yaml file like:
You can access the stable packages via the inputs field:
{ inputs, pkgs, ... }:
let
pkgs-stable = import inputs.nixpkgs-stable { system = pkgs.system; };
in {
packages = [ pkgs-stable.git ];
}
{
enterShell = ''
git --version
''
}
See basics for more about devenv.nix.
There are a few special inputs passed into devenv.nix:
pkgsis anixpkgsinput containing all of the available packages for your system.libis a collection of functions for working with Nix data structures.configis the resolved configuration for your developer environment, which you can use to reference any other options set indevenv.nix.
Note
... is a catch-all pattern for any additional inputs, so you can safely omit the inputs you're not using.
See devenv.yaml reference for all supported inputs.
Locking and updating inputs
When you run any of the commands,
devenv resolves inputs like github:NixOS/nixpkgs/nixpkgs-unstable into a commit revision and writes it to devenv.lock. This ensures that your environment is reproducible.
To update an input to a newer commit, run devenv update or read devenv.yaml reference to learn how to pin down the revision/branch at the input level.