nix: Should be pulling config from /nix/etc/nix and not /etc/nix
This commit is contained in:
@@ -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 ]; } );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user