diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-04-14 08:48:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 08:48:10 -0400 |
commit | 92346d1ed4be74ca5a5ef30e00e7edae43c7a442 (patch) | |
tree | 3cfddaddd8213ce6a5362cc14a4476448ce6b1df /src | |
parent | f5ab38a688031ada1ea52203911e313acdb52e08 (diff) | |
parent | d93e76fbb80c9f407ddac128357350f54add68fb (diff) |
Merge pull request #8174 from NixOS/gloss-xp-features-note-installables
Start cross-referencing experimental features
Diffstat (limited to 'src')
-rw-r--r-- | src/nix/nix.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/nix/nix.md b/src/nix/nix.md index e1865b31c..1ef6c7fcd 100644 --- a/src/nix/nix.md +++ b/src/nix/nix.md @@ -48,12 +48,17 @@ manual](https://nixos.org/manual/nix/stable/). # Installables +> **Warning** \ +> Installables are part of the unstable +> [`nix-command` experimental feature](@docroot@/contributing/experimental-features.md#xp-feature-nix-command), +> and subject to change without notice. + Many `nix` subcommands operate on one or more *installables*. These are command line arguments that represent something that can be realised in the Nix store. The following types of installable are supported by most commands: -- [Flake output attribute](#flake-output-attribute) +- [Flake output attribute](#flake-output-attribute) (experimental) - [Store path](#store-path) - [Nix file](#nix-file), optionally qualified by an attribute path - [Nix expression](#nix-expression), optionally qualified by an attribute path @@ -63,6 +68,13 @@ That is, Nix will operate on the default flake output attribute of the flake in ### Flake output attribute +> **Warning** \ +> Flake output attribute installables depend on both the +> [`flakes`](@docroot@/contributing/experimental-features.md#xp-feature-flakes) +> and +> [`nix-command`](@docroot@/contributing/experimental-features.md#xp-feature-nix-command) +> experimental features, and subject to change without notice. + Example: `nixpkgs#hello` These have the form *flakeref*[`#`*attrpath*], where *flakeref* is a |