Name
nix flake bake - bake a flake
Synopsis
nix flake bake [option…] flake-url
Examples
-
Bake the
patchelfflake into the directory./patchelf-baked:# nix flake bake github:NixOS/patchelf --dest-dir ./patchelf-bakedThe baked flake can be used like any other flake:
# nix flake show path:./patchelf-baked # nix build path:./patchelf-baked#patchelf -
Bake the outputs for all systems, not just the current one:
# nix flake bake github:NixOS/patchelf --dest-dir ./patchelf-baked --all-systems
Description
This command evaluates the outputs of the flake specified by flake reference flake-url and writes a new, baked flake to the directory path (specified by --dest-dir). The baked flake provides the same outputs as the original flake, but they are pre-evaluated: every derivation is replaced by a baked derivation, that is, a derivation with the builder builtin:substitute that is never built but whose outputs are obtained by substitution from a binary cache. As a result, evaluating a baked flake is much faster than evaluating the original, since it does (almost) no evaluation.
The baked flake has no inputs, so it can be used without access to the inputs of the original flake. It provides its own flake schemas (in the schemas output) that reproduce the structure of the original flake’s outputs, so nix flake show and nix flake check work on it without needing the original flake’s schemas.
Derivation attributes in the baked flake have the same name, system, outPath, outputName, outputs and meta.mainProgram as in the original flake, so commands such as nix build and nix run behave the same. Their drvPath is different, however: it refers to the baked derivation rather than the original one. The outputs of a baked flake can also be used as inputs of other derivations, e.g. by another flake that has the baked flake as an input.
Building the outputs of a baked flake requires that their store paths can be substituted (or are already present in the Nix store). If a store path cannot be substituted, the build fails; Nix will not fall back to building the original derivation.
By default, only the outputs for the current system are baked. Use --all-systems to bake the outputs for all systems.
Limitations
-
Only outputs that are recognised by the flake schemas are baked. Non-derivation outputs, such as
overlays,nixosModulesandtemplates, are omitted from the baked flake. -
Derivations whose output paths are not known at evaluation time cannot be baked. This includes content-addressed derivations and impure derivations.
nix flake bakeprints a warning for each such derivation and omits it from the baked flake. -
Outputs whose derivation is nested inside the output attribute (such as
nixosConfigurations.<name>.config.system.build.toplevel) are baked at that nested attribute. Other attributes of the output are not included.
This command requires the baked-derivations experimental feature, both in the Nix CLI and in the Nix daemon.
Options
-
Bake the outputs for all systems, not just the current system.
-
--default-flake-schemasflake-refThe URL of the flake providing default flake schema definitions.
-
--dest-dirpathDirectory in which to write the baked
flake.nix. -
Do not instantiate each evaluated derivation. This improves performance, but can cause errors when accessing store paths of derivations during evaluation.
Common evaluation options
-
--argname exprPass the value expr as the argument name to Nix functions.
-
--arg-from-filename pathPass the contents of file path as the argument name to Nix functions.
-
--arg-from-stdinnamePass the contents of stdin as the argument name to Nix functions.
-
--argstrname stringPass the string string as the argument name to Nix functions.
-
Start an interactive environment if evaluation fails.
-
--eval-storestore-urlThe URL of the Nix store to use for evaluation, i.e. to store derivations (
.drvfiles) and inputs referenced by them. -
Allow access to mutable paths and repositories.
-
--include/-IpathAdd path to search path entries used to resolve lookup paths
This option may be given multiple times.
Paths added through
-Itake precedence over thenix-pathconfiguration setting and theNIX_PATHenvironment variable. -
--override-flakeoriginal-ref resolved-refOverride the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options
-
Commit changes to the flake’s lock file.
-
--inputs-fromflake-urlUse the inputs of the specified flake as registry entries.
-
Don’t allow lookups in the flake registries.
DEPRECATED
Use
--no-use-registriesinstead. -
Do not allow any updates to the flake’s lock file.
-
Do not write the flake’s newly generated lock file.
-
--output-lock-fileflake-lock-pathWrite the given lock file instead of
flake.lockwithin the top-level flake. -
--override-inputinput-path flake-urlOverride a specific flake input (e.g.
dwarffs/nixpkgs). The input path must not be empty. This implies--no-write-lock-file. -
Recreate the flake’s lock file from scratch.
DEPRECATED
Use
nix flake updateinstead. -
--reference-lock-fileflake-lock-pathRead the given lock file instead of
flake.lockwithin the top-level flake. -
--update-inputinput-pathUpdate a specific flake input (ignoring its previous entry in the lock file).
DEPRECATED
Use
nix flake updateinstead.
Logging-related options
-
Set the logging verbosity level to ‘debug’.
-
--log-formatformatSet the format of log output; one of
raw,internal-json,barorbar-with-logs. -
--print-build-logs/-LPrint full build logs on standard error.
-
Decrease the logging verbosity level.
-
--verbose/-vIncrease the logging verbosity level.
Miscellaneous global options
-
Show usage information.
-
Disable substituters and consider all previously downloaded files up-to-date.
-
--optionname valueSet the Nix configuration setting name to value (overriding
nix.conf). -
Consider all previously downloaded files out-of-date.
-
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths.
-
Show version information.
Note
See
man nix.conffor overriding configuration settings with command line flags.