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/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c8cc50d46e78
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 186571965dcc
Choose a head ref
  • 3 commits
  • 9 files changed
  • 1 contributor

Commits on Jun 7, 2017

  1. nix: Make all options available as flags

    Thus, instead of ‘--option <name> <value>’, you can write ‘--<name>
    <value>’. So
    
      --option http-connections 100
    
    becomes
    
      --http-connections 100
    
    Apart from brevity, the difference is that it's not an error to set a
    non-existent option via --option, but unrecognized arguments are
    fatal.
    
    Boolean options have special treatment: they're mapped to the
    argument-less flags ‘--<name>’ and ‘--no-<name>’. E.g.
    
      --option auto-optimise-store false
    
    becomes
    
      --no-auto-optimise-store
    edolstra committed Jun 7, 2017
    Copy the full SHA
    b828377 View commit details
  2. nix: Add --help-config flag

    edolstra committed Jun 7, 2017
    Copy the full SHA
    aa952d5 View commit details
  3. Copy the full SHA
    1865719 View commit details
Loading