diff options
Diffstat (limited to 'scripts/nix-channel.in')
-rw-r--r-- | scripts/nix-channel.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/nix-channel.in b/scripts/nix-channel.in index fd6639ec1b31..6a4603976fb9 100644 --- a/scripts/nix-channel.in +++ b/scripts/nix-channel.in @@ -8,6 +8,12 @@ my $stateDir = $ENV{"NIX_STATE_DIR"}; $stateDir = "@localstatedir@/nix" unless defined $stateDir; +# Turn on caching in nix-prefetch-url. +my $channelCache = "$stateDir/channel-cache"; +$ENV{'NIX_DOWNLOAD_CACHE'} = $channelCache; +mkdir $channelCache, 0755 unless -e $channelCache; + + # Figure out the name of the `.nix-channels' file to use. my $home = $ENV{"HOME"}; die '$HOME not set' unless defined $home; |