Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 49a9bd626d40
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7dbb64aca4d1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Dec 4, 2018

  1. docs: Remove nix-repl references

    nix-repl has been deprecated
    marsam committed Dec 4, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    f1dd6fa View commit details
  2. Merge pull request #51493 from marsam/feature/docs-remove-nix-repl-re…

    …ferences
    
    docs: Remove nix-repl references
    Mic92 authored Dec 4, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7dbb64a View commit details
Showing with 9 additions and 11 deletions.
  1. +6 −6 doc/languages-frameworks/texlive.xml
  2. +3 −5 nixos/doc/manual/configuration/modularity.xml
12 changes: 6 additions & 6 deletions doc/languages-frameworks/texlive.xml
Original file line number Diff line number Diff line change
@@ -49,12 +49,12 @@ texlive.combine {
</listitem>
<listitem>
<para>
You can list packages e.g. by <command>nix-repl</command>.
<programlisting>
$ nix-repl
nix-repl> :l &lt;nixpkgs>
nix-repl> texlive.collection-&lt;TAB>
</programlisting>
You can list packages e.g. by <command>nix repl</command>.
<programlisting><![CDATA[
$ nix repl
nix-repl> :l <nixpkgs>
nix-repl> texlive.collection-<TAB>
]]></programlisting>
</para>
</listitem>
<listitem>
8 changes: 3 additions & 5 deletions nixos/doc/manual/configuration/modularity.xml
Original file line number Diff line number Diff line change
@@ -113,12 +113,10 @@ $ nixos-option <xref linkend="opt-boot.kernelModules"/>
[ "tun" "ipv6" "loop" <replaceable>...</replaceable> ]
</screen>
Interactive exploration of the configuration is possible using
<command
xlink:href="https://github.com/edolstra/nix-repl">nix-repl</command>,
a read-eval-print loop for Nix expressions. It’s not installed by default;
run <literal>nix-env -i nix-repl</literal> to get it. A typical use:
<command>nix repl</command>, a read-eval-print loop for Nix expressions.
A typical use:
<screen>
$ nix-repl '&lt;nixpkgs/nixos>'
$ nix repl '&lt;nixpkgs/nixos>'

nix-repl> config.<xref linkend="opt-networking.hostName"/>
"mandark"