diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-07-05T22·15+0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-05T22·15+0200 |
commit | b5ae85f0882f4857f550ed68b23af260af5000a0 (patch) | |
tree | 1d7147b0c06d650a3b9d06c74d77c6e86fecfde6 /doc/manual/command-ref/conf-file.xml | |
parent | e486d8d40e626a20e06d792db8cc5ac5aba9a5b4 (diff) | |
parent | 648bdf153d2e4d3c6687d8e1780b0dfd0aa98cda (diff) |
Merge pull request #2882 from grahamc/docs/1115-tarball-ttl
tarball-ttl: document
Diffstat (limited to 'doc/manual/command-ref/conf-file.xml')
-rw-r--r-- | doc/manual/command-ref/conf-file.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/manual/command-ref/conf-file.xml b/doc/manual/command-ref/conf-file.xml index 24fbf28cff25..09aad2e05533 100644 --- a/doc/manual/command-ref/conf-file.xml +++ b/doc/manual/command-ref/conf-file.xml @@ -864,6 +864,31 @@ requiredSystemFeatures = [ "kvm" ]; </varlistentry> + <varlistentry xml:id="conf-tarball-ttl"><term><literal>tarball-ttl</literal></term> + + <listitem> + <para>Default: <literal>3600</literal> seconds.</para> + + <para>The number of seconds a downloaded tarball is considered + fresh. If the cached tarball is stale, Nix will check whether + it is still up to date using the ETag header. Nix will download + a new version if the ETag header is unsupported, or the + cached ETag doesn't match. + </para> + + <para>Setting the TTL to <literal>0</literal> forces Nix to always + check if the tarball is up to date.</para> + + <para>Nix caches tarballs in + <filename>$XDG_CACHE_HOME/nix/tarballs</filename>.</para> + + <para>Files fetched via <envar>NIX_PATH</envar>, + <function>fetchGit</function>, <function>fetchMercurial</function>, + <function>fetchTarball</function>, and <function>fetchurl</function> + respect this TTL. + </para> + </listitem> + </varlistentry> <varlistentry xml:id="conf-timeout"><term><literal>timeout</literal></term> |