From fb163ecb85594fa0d476fbdf04c6d6c41c5c09fb Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Wed, 11 Jul 2018 16:39:44 -0400 Subject: [PATCH] nix: Should be pulling config from /nix/etc/nix and not /etc/nix --- pkgs/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/all-packages.nix b/pkgs/all-packages.nix index 950bb0f..0436503 100644 --- a/pkgs/all-packages.nix +++ b/pkgs/all-packages.nix @@ -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 ]; } ); }