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: e9be7fcb002c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fdc581d8c3f9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 24, 2018

  1. nixos/nix-daemon: optionally (on by default) check nix.conf can be read

    * checks using package providing the nix-daemon that we'll be using
    * made optional (unlike some other config checks) "just in case":
      since this requires running the new Nix on the builder, this
      won't work in a few (AFAIK very uncommon) situations such as
      cross-compiling NixOS or using `include` directives in nix.conf
    
    This does rely on Nix2 but not by the builder.
    Since we only offer Nix2+ in-tree this should be fine,
    and may otherwise be required anyway.
    dtzWill committed Apr 24, 2018
    Copy the full SHA
    fa1d1ee View commit details

Commits on May 1, 2018

  1. Merge pull request #39407 from dtzWill/feature/check-nix.conf

    nixos/nix-daemon: optionally (on by default) check nix.conf can be read
    dtzWill authored May 1, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fdc581d View commit details
Showing with 13 additions and 2 deletions.
  1. +13 −2 nixos/modules/services/misc/nix-daemon.nix
15 changes: 13 additions & 2 deletions nixos/modules/services/misc/nix-daemon.nix
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ let
sh = pkgs.runtimeShell;
binshDeps = pkgs.writeReferencesToFile sh;
in
pkgs.runCommand "nix.conf" { extraOptions = cfg.extraOptions; } ''
pkgs.runCommand "nix.conf" { extraOptions = cfg.extraOptions; } (''
${optionalString (!isNix20) ''
extraPaths=$(for i in $(cat ${binshDeps}); do if test -d $i; then echo $i; fi; done)
''}
@@ -62,7 +62,11 @@ let
''}
$extraOptions
END
'';
'' + optionalString cfg.checkConfig ''
echo "Checking that Nix can read nix.conf..."
ln -s $out ./nix.conf
NIX_CONF_DIR=$PWD ${cfg.package}/bin/nix show-config >/dev/null
'');

in

@@ -349,6 +353,13 @@ in
'';
};

checkConfig = mkOption {
type = types.bool;
default = true;
description = ''
If enabled (the default), checks that Nix can parse the generated nix.conf.
'';
};
};

};