1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Adding docs regarding the docker image from master

This commit is contained in:
Rok Garbas 2022-01-21 14:50:34 +01:00
parent c79087eb2a
commit d463e11760
No known key found for this signature in database
GPG key ID: A0E01EF44C27BF00

View file

@ -1,6 +1,8 @@
# Release X.Y (202?-??-??) # Release X.Y (202?-??-??)
* The Nix cli now searches for a flake.nix up until the root of the current git repository or a filesystem boundary rather than just in the current directory * The Nix cli now searches for a `flake.nix` up until the root of the current
git repository or a filesystem boundary rather than just in the current
directory.
* The TOML parser used by `builtins.fromTOML` has been replaced by [a * The TOML parser used by `builtins.fromTOML` has been replaced by [a
more compliant one](https://github.com/ToruNiina/toml11). more compliant one](https://github.com/ToruNiina/toml11).
* Added `:st`/`:show-trace` commands to nix repl, which are used to * Added `:st`/`:show-trace` commands to nix repl, which are used to
@ -13,3 +15,5 @@
to override the commit summary used when commiting an updated lockfile. to override the commit summary used when commiting an updated lockfile.
This may be used in conjunction with the nixConfig attribute in This may be used in conjunction with the nixConfig attribute in
`flake.nix` to better conform to repository conventions. `flake.nix` to better conform to repository conventions.
* `docker run -ti nixos/nix:master` will place you in the docker container with
the latest version of Nix from the `master` branch.