nix: Should be pulling config from /nix/etc/nix and not /etc/nix

This commit is contained in:
Tyson Whitehead
2018-07-11 16:39:44 -04:00
parent bf4e7a579f
commit fb163ecb85

View File

@@ -37,8 +37,8 @@ self: super: pkgs: with pkgs; {
idba = callPackage ./idba.nix { };
nixStable = super.nixStable.overrideAttrs
nixStable = ( super.nixStable.override { confDir= "/nix/etc"; } ).overrideAttrs
( attrs: { patches = attrs.patches or [] ++ [ ./nix/remote.patch ./nix/cvmfs.patch ]; } );
nix = super.nix.overrideAttrs
nix = ( super.nix.override { confDir = "/nix/etc"; } ).overrideAttrs
( attrs: { patches = attrs.patches or [] ++ [ ./nix/remote.patch ./nix/cvmfs.patch ]; } );
}