2012-07-18 18:59:03 +00:00
|
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
|
///@file
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
|
#include "types.hh"
|
2017-04-13 18:53:23 +00:00
|
|
|
|
#include "config.hh"
|
2017-10-23 17:34:49 +00:00
|
|
|
|
#include "util.hh"
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
2012-07-30 23:55:41 +00:00
|
|
|
|
#include <map>
|
2017-09-05 18:43:42 +00:00
|
|
|
|
#include <limits>
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2017-09-05 18:43:42 +00:00
|
|
|
|
#include <sys/types.h>
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
typedef enum { smEnabled, smRelaxed, smDisabled } SandboxMode;
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
2017-04-20 14:52:53 +00:00
|
|
|
|
struct MaxBuildJobsSetting : public BaseSetting<unsigned int>
|
|
|
|
|
{
|
|
|
|
|
MaxBuildJobsSetting(Config * options,
|
|
|
|
|
unsigned int def,
|
|
|
|
|
const std::string & name,
|
|
|
|
|
const std::string & description,
|
|
|
|
|
const std::set<std::string> & aliases = {})
|
2021-12-01 15:08:23 +00:00
|
|
|
|
: BaseSetting<unsigned int>(def, true, name, description, aliases)
|
2017-04-20 14:52:53 +00:00
|
|
|
|
{
|
|
|
|
|
options->addSetting(this);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-10 02:39:04 +00:00
|
|
|
|
unsigned int parse(const std::string & str) const override;
|
2017-04-20 14:52:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-28 12:37:04 +00:00
|
|
|
|
struct PluginFilesSetting : public BaseSetting<Paths>
|
|
|
|
|
{
|
|
|
|
|
bool pluginsLoaded = false;
|
|
|
|
|
|
|
|
|
|
PluginFilesSetting(Config * options,
|
|
|
|
|
const Paths & def,
|
|
|
|
|
const std::string & name,
|
|
|
|
|
const std::string & description,
|
|
|
|
|
const std::set<std::string> & aliases = {})
|
2021-12-01 15:08:23 +00:00
|
|
|
|
: BaseSetting<Paths>(def, true, name, description, aliases)
|
2021-01-28 12:37:04 +00:00
|
|
|
|
{
|
|
|
|
|
options->addSetting(this);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-10 02:39:04 +00:00
|
|
|
|
Paths parse(const std::string & str) const override;
|
2021-01-28 12:37:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-11-08 16:00:29 +00:00
|
|
|
|
const uint32_t maxIdsPerBuild =
|
|
|
|
|
#if __linux__
|
|
|
|
|
1 << 16
|
|
|
|
|
#else
|
|
|
|
|
1
|
|
|
|
|
#endif
|
|
|
|
|
;
|
2022-11-08 15:03:42 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
class Settings : public Config {
|
2012-07-31 22:19:44 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
unsigned int getDefaultCores();
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2018-09-28 13:57:27 +00:00
|
|
|
|
StringSet getDefaultSystemFeatures();
|
|
|
|
|
|
2020-12-03 21:35:38 +00:00
|
|
|
|
StringSet getDefaultExtraPlatforms();
|
|
|
|
|
|
2019-12-20 20:40:23 +00:00
|
|
|
|
bool isWSL1();
|
|
|
|
|
|
2023-03-17 17:32:18 +00:00
|
|
|
|
Path getDefaultSSLCertFile();
|
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
public:
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Settings();
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Path nixPrefix;
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The directory where we store sources and derived files.
|
|
|
|
|
*/
|
2012-07-30 23:55:41 +00:00
|
|
|
|
Path nixStore;
|
|
|
|
|
|
|
|
|
|
Path nixDataDir; /* !!! fix */
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The directory where we log various operations.
|
|
|
|
|
*/
|
2012-07-30 23:55:41 +00:00
|
|
|
|
Path nixLogDir;
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The directory where state is stored.
|
|
|
|
|
*/
|
2012-07-30 23:55:41 +00:00
|
|
|
|
Path nixStateDir;
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The directory where system configuration files are stored.
|
|
|
|
|
*/
|
2012-07-30 23:55:41 +00:00
|
|
|
|
Path nixConfDir;
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* A list of user configuration files to load.
|
|
|
|
|
*/
|
2020-03-30 13:31:14 +00:00
|
|
|
|
std::vector<Path> nixUserConfFiles;
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The directory where the main programs are stored.
|
|
|
|
|
*/
|
2012-07-30 23:55:41 +00:00
|
|
|
|
Path nixBinDir;
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The directory where the man pages are stored.
|
|
|
|
|
*/
|
2018-02-14 22:05:55 +00:00
|
|
|
|
Path nixManDir;
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* File name of the socket the daemon listens to.
|
|
|
|
|
*/
|
2013-03-08 00:24:59 +00:00
|
|
|
|
Path nixDaemonSocketFile;
|
|
|
|
|
|
2019-11-22 15:06:44 +00:00
|
|
|
|
Setting<std::string> storeUri{this, getEnv("NIX_REMOTE").value_or("auto"), "store",
|
2023-03-21 13:37:09 +00:00
|
|
|
|
R"(
|
2023-03-23 09:38:48 +00:00
|
|
|
|
The [URL of the Nix store](@docroot@/command-ref/new-cli/nix3-help-stores.md#store-url-format)
|
|
|
|
|
to use for most operations.
|
|
|
|
|
See [`nix help-stores`](@docroot@/command-ref/new-cli/nix3-help-stores.md)
|
2023-03-21 13:37:09 +00:00
|
|
|
|
for supported store types and settings.
|
|
|
|
|
)"};
|
2017-10-23 17:34:49 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<bool> keepFailed{this, false, "keep-failed",
|
|
|
|
|
"Whether to keep temporary directories of failed builds."};
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<bool> keepGoing{this, false, "keep-going",
|
|
|
|
|
"Whether to keep building derivations when another build fails."};
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> tryFallback{
|
|
|
|
|
this, false, "fallback",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true`, Nix will fall back to building from source if a
|
|
|
|
|
binary substitute fails. This is equivalent to the `--fallback`
|
|
|
|
|
flag. The default is `false`.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-fallback"}};
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* Whether to show build log output in real time.
|
|
|
|
|
*/
|
2016-04-25 14:47:46 +00:00
|
|
|
|
bool verboseBuild = true;
|
|
|
|
|
|
2018-10-22 10:14:02 +00:00
|
|
|
|
Setting<size_t> logLines{this, 10, "log-lines",
|
2022-02-25 14:16:16 +00:00
|
|
|
|
"The number of lines of the tail of "
|
2018-10-22 10:14:02 +00:00
|
|
|
|
"the log to show if a build fails."};
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
MaxBuildJobsSetting maxBuildJobs{
|
|
|
|
|
this, 1, "max-jobs",
|
|
|
|
|
R"(
|
|
|
|
|
This option defines the maximum number of jobs that Nix will try to
|
|
|
|
|
build in parallel. The default is `1`. The special value `auto`
|
|
|
|
|
causes Nix to use the number of CPUs in your system. `0` is useful
|
|
|
|
|
when using remote builders to prevent any local builds (except for
|
|
|
|
|
`preferLocalBuild` derivation attribute which executes locally
|
|
|
|
|
regardless). It can be overridden using the `--max-jobs` (`-j`)
|
|
|
|
|
command line switch.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-max-jobs"}};
|
2003-06-16 13:33:38 +00:00
|
|
|
|
|
2023-05-08 18:21:57 +00:00
|
|
|
|
Setting<unsigned int> maxSubstitutionJobs{
|
2023-04-30 08:56:24 +00:00
|
|
|
|
this, 16, "max-substitution-jobs",
|
|
|
|
|
R"(
|
|
|
|
|
This option defines the maximum number of substitution jobs that Nix
|
|
|
|
|
will try to run in parallel. The default is `16`. The minimum value
|
2023-05-08 18:21:57 +00:00
|
|
|
|
one can choose is `1` and lower values will be interpreted as `1`.
|
2023-04-30 08:56:24 +00:00
|
|
|
|
)",
|
|
|
|
|
{"substitution-max-jobs"}};
|
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<unsigned int> buildCores{
|
2021-12-01 15:08:23 +00:00
|
|
|
|
this,
|
|
|
|
|
getDefaultCores(),
|
|
|
|
|
"cores",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
R"(
|
|
|
|
|
Sets the value of the `NIX_BUILD_CORES` environment variable in the
|
|
|
|
|
invocation of builders. Builders can use this variable at their
|
|
|
|
|
discretion to control the maximum amount of parallelism. For
|
|
|
|
|
instance, in Nixpkgs, if the derivation attribute
|
|
|
|
|
`enableParallelBuilding` is set to `true`, the builder passes the
|
|
|
|
|
`-jN` flag to GNU Make. It can be overridden using the `--cores`
|
|
|
|
|
command line switch and defaults to `1`. The value `0` means that
|
|
|
|
|
the builder should use all available CPU cores in the system.
|
|
|
|
|
)",
|
2021-12-01 15:08:23 +00:00
|
|
|
|
{"build-cores"}, false};
|
2003-07-10 13:41:28 +00:00
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* Read-only mode. Don't copy stuff to the store, don't change
|
|
|
|
|
* the database.
|
|
|
|
|
*/
|
2017-04-13 18:53:23 +00:00
|
|
|
|
bool readOnlyMode = false;
|
2003-07-31 13:47:13 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<std::string> thisSystem{
|
|
|
|
|
this, SYSTEM, "system",
|
|
|
|
|
R"(
|
2023-05-31 01:48:05 +00:00
|
|
|
|
The system type of the current Nix installation.
|
2023-07-19 08:57:37 +00:00
|
|
|
|
Nix will only build a given [derivation](@docroot@/language/derivations.md) locally when its `system` attribute equals any of the values specified here or in [`extra-platforms`](#conf-extra-platforms).
|
2023-05-31 01:21:11 +00:00
|
|
|
|
|
2023-05-31 01:48:05 +00:00
|
|
|
|
The default value is set when Nix itself is compiled for the system it will run on.
|
2023-06-22 11:50:00 +00:00
|
|
|
|
The following system types are widely used, as [Nix is actively supported on these platforms](@docroot@/contributing/hacking.md#platforms):
|
2023-05-31 01:48:05 +00:00
|
|
|
|
|
|
|
|
|
- `x86_64-linux`
|
|
|
|
|
- `x86_64-darwin`
|
|
|
|
|
- `i686-linux`
|
|
|
|
|
- `aarch64-linux`
|
|
|
|
|
- `aarch64-darwin`
|
2023-06-20 11:42:23 +00:00
|
|
|
|
- `armv6l-linux`
|
|
|
|
|
- `armv7l-linux`
|
2023-05-31 01:48:05 +00:00
|
|
|
|
|
2023-07-18 21:26:36 +00:00
|
|
|
|
In general, you do not have to modify this setting.
|
2023-06-22 11:50:00 +00:00
|
|
|
|
While you can force Nix to run a Darwin-specific `builder` executable on a Linux machine, the result would obviously be wrong.
|
|
|
|
|
|
|
|
|
|
This value is available in the Nix language as [`builtins.currentSystem`](@docroot@/language/builtin-constants.md#builtins-currentSystem).
|
2020-08-19 16:28:04 +00:00
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<time_t> maxSilentTime{
|
|
|
|
|
this, 0, "max-silent-time",
|
|
|
|
|
R"(
|
|
|
|
|
This option defines the maximum number of seconds that a builder can
|
|
|
|
|
go without producing any data on standard output or standard error.
|
|
|
|
|
This is useful (for instance in an automated build system) to catch
|
|
|
|
|
builds that are stuck in an infinite loop, or to catch remote builds
|
|
|
|
|
that are hanging due to network problems. It can be overridden using
|
|
|
|
|
the `--max-silent-time` command line switch.
|
|
|
|
|
|
|
|
|
|
The value `0` means that there is no timeout. This is also the
|
|
|
|
|
default.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-max-silent-time"}};
|
2006-12-04 13:09:16 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<time_t> buildTimeout{
|
|
|
|
|
this, 0, "timeout",
|
|
|
|
|
R"(
|
|
|
|
|
This option defines the maximum number of seconds that a builder can
|
|
|
|
|
run. This is useful (for instance in an automated build system) to
|
|
|
|
|
catch builds that are stuck in an infinite loop but keep writing to
|
|
|
|
|
their standard output or standard error. It can be overridden using
|
|
|
|
|
the `--timeout` command line switch.
|
|
|
|
|
|
|
|
|
|
The value `0` means that there is no timeout. This is also the
|
|
|
|
|
default.
|
|
|
|
|
)",
|
|
|
|
|
{"build-timeout"}};
|
2004-06-25 15:36:09 +00:00
|
|
|
|
|
2023-05-19 14:56:59 +00:00
|
|
|
|
Setting<Strings> buildHook{this, {}, "build-hook",
|
2023-02-27 15:27:56 +00:00
|
|
|
|
R"(
|
|
|
|
|
The path to the helper program that executes remote builds.
|
|
|
|
|
|
|
|
|
|
Nix communicates with the build hook over `stdio` using a custom protocol to request builds that cannot be performed directly by the Nix daemon.
|
|
|
|
|
The default value is the internal Nix binary that implements remote building.
|
|
|
|
|
|
|
|
|
|
> **Important**
|
|
|
|
|
>
|
|
|
|
|
> Change this setting only if you really know what you’re doing.
|
|
|
|
|
)"};
|
2017-05-01 13:46:47 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<std::string> builders{
|
|
|
|
|
this, "@" + nixConfDir + "/machines", "builders",
|
2021-03-04 09:14:23 +00:00
|
|
|
|
R"(
|
2021-03-23 03:19:00 +00:00
|
|
|
|
A semicolon-separated list of build machines.
|
|
|
|
|
For the exact format and examples, see [the manual chapter on remote builds](../advanced-topics/distributed-builds.md)
|
2021-03-04 09:14:23 +00:00
|
|
|
|
)"};
|
2020-08-19 16:28:04 +00:00
|
|
|
|
|
|
|
|
|
Setting<bool> buildersUseSubstitutes{
|
|
|
|
|
this, false, "builders-use-substitutes",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true`, Nix will instruct remote build machines to use
|
|
|
|
|
their own binary substitutes if available. In practical terms, this
|
|
|
|
|
means that remote hosts will fetch as many build dependencies as
|
|
|
|
|
possible from their own substitutes (e.g, from `cache.nixos.org`),
|
|
|
|
|
instead of waiting for this host to upload them all. This can
|
|
|
|
|
drastically reduce build times if the network connection between
|
|
|
|
|
this computer and the remote build host is slow.
|
|
|
|
|
)"};
|
2018-01-09 21:40:07 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<off_t> reservedSize{this, 8 * 1024 * 1024, "gc-reserved-space",
|
|
|
|
|
"Amount of reserved disk space for the garbage collector."};
|
2004-01-13 16:35:43 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> fsyncMetadata{
|
|
|
|
|
this, true, "fsync-metadata",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true`, changes to the Nix store metadata (in
|
|
|
|
|
`/nix/var/nix/db`) are synchronously flushed to disk. This improves
|
|
|
|
|
robustness in case of system crashes, but reduces performance. The
|
|
|
|
|
default is `true`.
|
|
|
|
|
)"};
|
2004-05-12 14:20:32 +00:00
|
|
|
|
|
2019-12-20 20:40:23 +00:00
|
|
|
|
Setting<bool> useSQLiteWAL{this, !isWSL1(), "use-sqlite-wal",
|
2017-04-13 18:53:23 +00:00
|
|
|
|
"Whether SQLite should use WAL mode."};
|
2010-06-23 14:34:08 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<bool> syncBeforeRegistering{this, false, "sync-before-registering",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
"Whether to call `sync()` before registering a path as valid."};
|
|
|
|
|
|
|
|
|
|
Setting<bool> useSubstitutes{
|
|
|
|
|
this, true, "substitute",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true` (default), Nix will use binary substitutes if
|
|
|
|
|
available. This option can be disabled to force building from
|
|
|
|
|
source.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-use-substitutes"}};
|
2014-02-08 05:05:46 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<std::string> buildUsersGroup{
|
|
|
|
|
this, "", "build-users-group",
|
|
|
|
|
R"(
|
|
|
|
|
This options specifies the Unix group containing the Nix build user
|
|
|
|
|
accounts. In multi-user Nix installations, builds should not be
|
|
|
|
|
performed by the Nix account since that would allow users to
|
|
|
|
|
arbitrarily modify the Nix store and database by supplying specially
|
|
|
|
|
crafted builders; and they cannot be performed by the calling user
|
|
|
|
|
since that would allow him/her to influence the build result.
|
|
|
|
|
|
|
|
|
|
Therefore, if this option is non-empty and specifies a valid group,
|
|
|
|
|
builds will be performed under the user accounts that are a member
|
|
|
|
|
of the group specified here (as listed in `/etc/group`). Those user
|
|
|
|
|
accounts should not be used for any other purpose\!
|
|
|
|
|
|
|
|
|
|
Nix will never run two builds under the same user account at the
|
|
|
|
|
same time. This is to prevent an obvious security hole: a malicious
|
|
|
|
|
user writing a Nix expression that modifies the build result of a
|
|
|
|
|
legitimate Nix expression being built by another user. Therefore it
|
|
|
|
|
is good to have as many Nix build user accounts as you can spare.
|
|
|
|
|
(Remember: uids are cheap.)
|
|
|
|
|
|
|
|
|
|
The build users should have permission to create files in the Nix
|
|
|
|
|
store, but not delete them. Therefore, `/nix/store` should be owned
|
|
|
|
|
by the Nix account, its group should be the group specified here,
|
|
|
|
|
and its mode should be `1775`.
|
|
|
|
|
|
|
|
|
|
If the build users group is empty, builds will be performed under
|
|
|
|
|
the uid of the Nix process (that is, the uid of the caller if
|
|
|
|
|
`NIX_REMOTE` is empty, the uid under which the Nix daemon runs if
|
Move `trustedUsers` and `allowedUsers` to separate config struct
These settings are not needed for libstore at all, they are just used by
the nix daemon *command* for authorization on unix domain sockets. My
moving them to a new configuration struct just in that file, we avoid
them leaking anywhere else.
Also, it is good to break up the mammoth `Settings` struct in general.
Issue #5638 tracks this.
The message is not changed because I do not want to regress in
convenience to the user. Just saying "this connection is not trusted"
doesn't tell them out to fix the issue. The ideal thing to do would be
to somehow parameterize `processCommand` on how the error should be
displayed, so different sorts of connections can display different
information to the user based on how authentication is performed for the
connection in question. This, however, is a good bit more work, so it is
left for the future.
This came up with me thinking about the tcp:// store (#5265). The larger
project is not TCP *per se*, but the idea that it should be possible for
something else to manage access control to services like the Nix Daemon,
and those services simply trust or trust the incoming connection as they
are told. This is a more capability-oriented way of thinking about trust
than "every server implements its own auth separately" as we are used to today.
Its very great that libstore itself already implements just this model,
and so via this refactor I basically want to "enshrine" that so it
continues to be the case.
2023-02-02 18:20:44 +00:00
|
|
|
|
`NIX_REMOTE` is `daemon`). Obviously, this should not be used
|
|
|
|
|
with a nix daemon accessible to untrusted clients.
|
2022-12-13 23:40:30 +00:00
|
|
|
|
|
|
|
|
|
Defaults to `nixbld` when running as root, *empty* otherwise.
|
|
|
|
|
)",
|
|
|
|
|
{}, false};
|
2014-02-19 12:05:15 +00:00
|
|
|
|
|
2020-05-19 21:25:44 +00:00
|
|
|
|
Setting<bool> autoAllocateUids{this, false, "auto-allocate-uids",
|
2022-12-01 03:40:02 +00:00
|
|
|
|
R"(
|
2022-12-06 09:30:36 +00:00
|
|
|
|
Whether to select UIDs for builds automatically, instead of using the
|
|
|
|
|
users in `build-users-group`.
|
2022-12-01 03:40:02 +00:00
|
|
|
|
|
2022-12-06 09:30:36 +00:00
|
|
|
|
UIDs are allocated starting at 872415232 (0x34000000) on Linux and 56930 on macOS.
|
2022-12-01 03:40:02 +00:00
|
|
|
|
)"};
|
2020-05-19 21:25:44 +00:00
|
|
|
|
|
2022-11-08 16:00:29 +00:00
|
|
|
|
Setting<uint32_t> startId{this,
|
|
|
|
|
#if __linux__
|
2022-11-21 17:46:55 +00:00
|
|
|
|
0x34000000,
|
2022-11-08 16:00:29 +00:00
|
|
|
|
#else
|
|
|
|
|
56930,
|
|
|
|
|
#endif
|
|
|
|
|
"start-id",
|
2020-05-19 21:25:44 +00:00
|
|
|
|
"The first UID and GID to use for dynamic ID allocation."};
|
2017-10-31 11:22:29 +00:00
|
|
|
|
|
2022-11-08 16:00:29 +00:00
|
|
|
|
Setting<uint32_t> uidCount{this,
|
|
|
|
|
#if __linux__
|
|
|
|
|
maxIdsPerBuild * 128,
|
|
|
|
|
#else
|
|
|
|
|
128,
|
|
|
|
|
#endif
|
|
|
|
|
"id-count",
|
2017-10-31 11:22:29 +00:00
|
|
|
|
"The number of UIDs/GIDs to use for dynamic ID allocation."};
|
|
|
|
|
|
2022-11-28 20:54:02 +00:00
|
|
|
|
#if __linux__
|
|
|
|
|
Setting<bool> useCgroups{
|
|
|
|
|
this, false, "use-cgroups",
|
|
|
|
|
R"(
|
2022-12-01 03:40:02 +00:00
|
|
|
|
Whether to execute builds inside cgroups.
|
2022-12-06 09:30:36 +00:00
|
|
|
|
This is only supported on Linux.
|
2022-12-01 03:40:02 +00:00
|
|
|
|
|
2022-12-28 16:09:20 +00:00
|
|
|
|
Cgroups are required and enabled automatically for derivations
|
2022-12-06 09:30:36 +00:00
|
|
|
|
that require the `uid-range` system feature.
|
2022-12-01 03:40:02 +00:00
|
|
|
|
)"};
|
2022-11-28 20:54:02 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2017-08-31 12:28:25 +00:00
|
|
|
|
Setting<bool> impersonateLinux26{this, false, "impersonate-linux-26",
|
|
|
|
|
"Whether to impersonate a Linux 2.6 machine on newer kernels.",
|
|
|
|
|
{"build-impersonate-linux-26"}};
|
2011-06-30 15:19:13 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> keepLog{
|
|
|
|
|
this, true, "keep-build-log",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true` (the default), Nix will write the build log of a
|
|
|
|
|
derivation (i.e. the standard output and error of its builder) to
|
|
|
|
|
the directory `/nix/var/log/nix/drvs`. The build log can be
|
|
|
|
|
retrieved using the command `nix-store -l path`.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-keep-log"}};
|
2007-08-12 00:29:28 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> compressLog{
|
|
|
|
|
this, true, "compress-build-log",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true` (the default), build logs written to
|
|
|
|
|
`/nix/var/log/nix/drvs` will be compressed on the fly using bzip2.
|
|
|
|
|
Otherwise, they will not be compressed.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-compress-log"}};
|
2007-11-16 16:15:26 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<unsigned long> maxLogSize{
|
|
|
|
|
this, 0, "max-build-log-size",
|
|
|
|
|
R"(
|
|
|
|
|
This option defines the maximum number of bytes that a builder can
|
|
|
|
|
write to its stdout/stderr. If the builder exceeds this limit, it’s
|
|
|
|
|
killed. A value of `0` (the default) means that there is no limit.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-max-log-size"}};
|
2013-09-02 09:58:18 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<unsigned int> pollInterval{this, 5, "build-poll-interval",
|
|
|
|
|
"How often (in seconds) to poll for locks."};
|
2008-11-12 11:08:27 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> gcKeepOutputs{
|
|
|
|
|
this, false, "keep-outputs",
|
|
|
|
|
R"(
|
|
|
|
|
If `true`, the garbage collector will keep the outputs of
|
|
|
|
|
non-garbage derivations. If `false` (default), outputs will be
|
|
|
|
|
deleted unless they are GC roots themselves (or reachable from other
|
|
|
|
|
roots).
|
|
|
|
|
|
|
|
|
|
In general, outputs must be registered as roots separately. However,
|
|
|
|
|
even if the output of a derivation is registered as a root, the
|
|
|
|
|
collector will still delete store paths that are used only at build
|
|
|
|
|
time (e.g., the C compiler, or source tarballs downloaded from the
|
|
|
|
|
network). To prevent it from doing so, set this option to `true`.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"gc-keep-outputs"}};
|
2003-08-19 09:04:47 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> gcKeepDerivations{
|
|
|
|
|
this, true, "keep-derivations",
|
|
|
|
|
R"(
|
|
|
|
|
If `true` (default), the garbage collector will keep the derivations
|
|
|
|
|
from which non-garbage store paths were built. If `false`, they will
|
|
|
|
|
be deleted unless explicitly registered as a root (or reachable from
|
|
|
|
|
other roots).
|
|
|
|
|
|
|
|
|
|
Keeping derivation around is useful for querying and traceability
|
|
|
|
|
(e.g., it allows you to ask with what dependencies or options a
|
|
|
|
|
store path was built), so by default this option is on. Turn it off
|
|
|
|
|
to save a bit of disk space (or a lot if `keep-outputs` is also
|
|
|
|
|
turned on).
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"gc-keep-derivations"}};
|
2005-02-01 22:07:48 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> autoOptimiseStore{
|
|
|
|
|
this, false, "auto-optimise-store",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true`, Nix automatically detects files in the store
|
|
|
|
|
that have identical contents, and replaces them with hard links to
|
|
|
|
|
a single copy. This saves disk space. If set to `false` (the
|
|
|
|
|
default), you can still run `nix-store --optimise` to get rid of
|
|
|
|
|
duplicate files.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<bool> envKeepDerivations{
|
|
|
|
|
this, false, "keep-env-derivations",
|
|
|
|
|
R"(
|
|
|
|
|
If `false` (default), derivations are not stored in Nix user
|
|
|
|
|
environments. That is, the derivations of any build-time-only
|
|
|
|
|
dependencies may be garbage-collected.
|
|
|
|
|
|
|
|
|
|
If `true`, when you add a Nix derivation to a user environment, the
|
|
|
|
|
path of the derivation is stored in the user environment. Thus, the
|
|
|
|
|
derivation will not be garbage-collected until the user environment
|
|
|
|
|
generation is deleted (`nix-env --delete-generations`). To prevent
|
|
|
|
|
build-time-only dependencies from being collected, you should also
|
|
|
|
|
turn on `keep-outputs`.
|
|
|
|
|
|
|
|
|
|
The difference between this option and `keep-derivations` is that
|
|
|
|
|
this one is “sticky”: it applies to any user environment created
|
|
|
|
|
while this option was enabled, while `keep-derivations` only applies
|
|
|
|
|
at the moment the garbage collector is run.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"env-keep-derivations"}};
|
2005-02-14 13:07:09 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<SandboxMode> sandboxMode{
|
|
|
|
|
this,
|
2018-11-07 16:08:28 +00:00
|
|
|
|
#if __linux__
|
|
|
|
|
smEnabled
|
|
|
|
|
#else
|
|
|
|
|
smDisabled
|
|
|
|
|
#endif
|
|
|
|
|
, "sandbox",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
R"(
|
|
|
|
|
If set to `true`, builds will be performed in a *sandboxed
|
|
|
|
|
environment*, i.e., they’re isolated from the normal file system
|
|
|
|
|
hierarchy and will only see their dependencies in the Nix store,
|
|
|
|
|
the temporary build directory, private versions of `/proc`,
|
|
|
|
|
`/dev`, `/dev/shm` and `/dev/pts` (on Linux), and the paths
|
|
|
|
|
configured with the `sandbox-paths` option. This is useful to
|
|
|
|
|
prevent undeclared dependencies on files in directories such as
|
|
|
|
|
`/usr/bin`. In addition, on Linux, builds run in private PID,
|
|
|
|
|
mount, network, IPC and UTS namespaces to isolate them from other
|
|
|
|
|
processes in the system (except that fixed-output derivations do
|
|
|
|
|
not run in private network namespace to ensure they can access the
|
|
|
|
|
network).
|
|
|
|
|
|
|
|
|
|
Currently, sandboxing only work on Linux and macOS. The use of a
|
|
|
|
|
sandbox requires that Nix is run as root (so you should use the
|
|
|
|
|
“build users” feature to perform the actual builds under different
|
|
|
|
|
users than root).
|
|
|
|
|
|
|
|
|
|
If this option is set to `relaxed`, then fixed-output derivations
|
|
|
|
|
and derivations that have the `__noChroot` attribute set to `true`
|
|
|
|
|
do not run in sandboxes.
|
|
|
|
|
|
|
|
|
|
The default is `true` on Linux and `false` on all other platforms.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-use-chroot", "build-use-sandbox"}};
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<PathSet> sandboxPaths{
|
|
|
|
|
this, {}, "sandbox-paths",
|
|
|
|
|
R"(
|
|
|
|
|
A list of paths bind-mounted into Nix sandbox environments. You can
|
|
|
|
|
use the syntax `target=source` to mount a path in a different
|
|
|
|
|
location in the sandbox; for instance, `/bin=/nix-bin` will mount
|
|
|
|
|
the path `/nix-bin` as `/bin` inside the sandbox. If *source* is
|
|
|
|
|
followed by `?`, then it is not an error if *source* does not exist;
|
|
|
|
|
for example, `/dev/nvidiactl?` specifies that `/dev/nvidiactl` will
|
|
|
|
|
only be mounted in the sandbox if it exists in the host filesystem.
|
|
|
|
|
|
2022-12-28 16:09:20 +00:00
|
|
|
|
If the source is in the Nix store, then its closure will be added to
|
|
|
|
|
the sandbox as well.
|
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Depending on how Nix was built, the default value for this option
|
|
|
|
|
may be empty or provide `/bin/sh` as a bind-mount of `bash`.
|
|
|
|
|
)",
|
2017-08-31 12:28:25 +00:00
|
|
|
|
{"build-chroot-dirs", "build-sandbox-paths"}};
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2019-07-25 18:29:58 +00:00
|
|
|
|
Setting<bool> sandboxFallback{this, true, "sandbox-fallback",
|
|
|
|
|
"Whether to disable sandboxing when the kernel doesn't allow it."};
|
|
|
|
|
|
2023-07-11 10:13:39 +00:00
|
|
|
|
Setting<bool> requireDropSupplementaryGroups{this, getuid() == 0, "require-drop-supplementary-groups",
|
2023-05-08 18:41:47 +00:00
|
|
|
|
R"(
|
2023-07-11 09:57:03 +00:00
|
|
|
|
Following the principle of least privilege,
|
|
|
|
|
Nix will attempt to drop supplementary groups when building with sandboxing.
|
2023-05-08 18:41:47 +00:00
|
|
|
|
|
2023-07-11 09:57:03 +00:00
|
|
|
|
However this can fail under some circumstances.
|
2023-07-12 11:32:57 +00:00
|
|
|
|
For example, if the user lacks the `CAP_SETGID` capability.
|
|
|
|
|
Search `setgroups(2)` for `EPERM` to find more detailed information on this.
|
2023-05-08 18:41:47 +00:00
|
|
|
|
|
2023-07-11 10:09:25 +00:00
|
|
|
|
If you encounter such a failure, setting this option to `false` will let you ignore it and continue.
|
|
|
|
|
But before doing so, you should consider the security implications carefully.
|
|
|
|
|
Not dropping supplementary groups means the build sandbox will be less restricted than intended.
|
2023-07-11 10:24:11 +00:00
|
|
|
|
|
|
|
|
|
This option defaults to `true` when the user is root
|
2023-07-12 11:33:05 +00:00
|
|
|
|
(since `root` usually has permissions to call setgroups)
|
2023-07-11 10:24:11 +00:00
|
|
|
|
and `false` otherwise.
|
2023-05-08 18:41:47 +00:00
|
|
|
|
)"};
|
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
#if __linux__
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<std::string> sandboxShmSize{
|
|
|
|
|
this, "50%", "sandbox-dev-shm-size",
|
|
|
|
|
R"(
|
|
|
|
|
This option determines the maximum size of the `tmpfs` filesystem
|
|
|
|
|
mounted on `/dev/shm` in Linux sandboxes. For the format, see the
|
|
|
|
|
description of the `size` option of `tmpfs` in mount8. The default
|
|
|
|
|
is `50%`.
|
|
|
|
|
)"};
|
2017-05-05 15:45:22 +00:00
|
|
|
|
|
|
|
|
|
Setting<Path> sandboxBuildDir{this, "/build", "sandbox-build-dir",
|
|
|
|
|
"The build directory inside the sandbox."};
|
2017-04-13 18:53:23 +00:00
|
|
|
|
#endif
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<PathSet> allowedImpureHostPrefixes{this, {}, "allowed-impure-host-deps",
|
|
|
|
|
"Which prefixes to allow derivations to ask for access to (primarily for Darwin)."};
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
#if __APPLE__
|
|
|
|
|
Setting<bool> darwinLogSandboxViolations{this, false, "darwin-log-sandbox-violations",
|
|
|
|
|
"Whether to log Darwin sandbox access violations to the system log."};
|
|
|
|
|
#endif
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> runDiffHook{
|
|
|
|
|
this, false, "run-diff-hook",
|
|
|
|
|
R"(
|
|
|
|
|
If true, enable the execution of the `diff-hook` program.
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
When using the Nix daemon, `run-diff-hook` must be set in the
|
|
|
|
|
`nix.conf` configuration file, and cannot be passed at the command
|
|
|
|
|
line.
|
|
|
|
|
)"};
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2023-05-19 14:56:59 +00:00
|
|
|
|
OptionalPathSetting diffHook{
|
|
|
|
|
this, std::nullopt, "diff-hook",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
R"(
|
|
|
|
|
Absolute path to an executable capable of diffing build
|
|
|
|
|
results. The hook is executed if `run-diff-hook` is true, and the
|
|
|
|
|
output of a build is known to not be the same. This program is not
|
|
|
|
|
executed to determine if two results are the same.
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
The diff hook is executed by the same user and group who ran the
|
|
|
|
|
build. However, the diff hook does not have write access to the
|
|
|
|
|
store path just built.
|
|
|
|
|
|
|
|
|
|
The diff hook program receives three parameters:
|
|
|
|
|
|
|
|
|
|
1. A path to the previous build's results
|
|
|
|
|
|
|
|
|
|
2. A path to the current build's results
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
3. The path to the build's derivation
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
4. The path to the build's scratch directory. This directory will
|
|
|
|
|
exist only if the build was run with `--keep-failed`.
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
The stderr and stdout output from the diff hook will not be
|
|
|
|
|
displayed to the user. Instead, it will print to the nix-daemon's
|
|
|
|
|
log.
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
When using the Nix daemon, `diff-hook` must be set in the `nix.conf`
|
|
|
|
|
configuration file, and cannot be passed at the command line.
|
|
|
|
|
)"};
|
2017-11-20 16:44:07 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<Strings> trustedPublicKeys{
|
|
|
|
|
this,
|
|
|
|
|
{"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="},
|
|
|
|
|
"trusted-public-keys",
|
|
|
|
|
R"(
|
2023-01-20 08:46:28 +00:00
|
|
|
|
A whitespace-separated list of public keys.
|
|
|
|
|
|
|
|
|
|
At least one of the following condition must be met
|
|
|
|
|
for Nix to accept copying a store object from another
|
|
|
|
|
Nix store (such as a substituter):
|
|
|
|
|
|
|
|
|
|
- the store object has been signed using a key in the trusted keys list
|
|
|
|
|
- the [`require-sigs`](#conf-require-sigs) option has been set to `false`
|
|
|
|
|
- the store object is [output-addressed](@docroot@/glossary.md#gloss-output-addressed-store-object)
|
2020-08-19 16:28:04 +00:00
|
|
|
|
)",
|
|
|
|
|
{"binary-cache-public-keys"}};
|
|
|
|
|
|
|
|
|
|
Setting<Strings> secretKeyFiles{
|
|
|
|
|
this, {}, "secret-key-files",
|
|
|
|
|
R"(
|
|
|
|
|
A whitespace-separated list of files containing secret (private)
|
|
|
|
|
keys. These are used to sign locally-built paths. They can be
|
|
|
|
|
generated using `nix-store --generate-binary-cache-key`. The
|
|
|
|
|
corresponding public key can be distributed to other users, who
|
|
|
|
|
can add it to `trusted-public-keys` in their `nix.conf`.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<unsigned int> tarballTtl{
|
|
|
|
|
this, 60 * 60, "tarball-ttl",
|
|
|
|
|
R"(
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
Setting the TTL to `0` forces Nix to always check if the tarball is
|
|
|
|
|
up to date.
|
|
|
|
|
|
|
|
|
|
Nix caches tarballs in `$XDG_CACHE_HOME/nix/tarballs`.
|
|
|
|
|
|
|
|
|
|
Files fetched via `NIX_PATH`, `fetchGit`, `fetchMercurial`,
|
|
|
|
|
`fetchTarball`, and `fetchurl` respect this TTL.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<bool> requireSigs{
|
|
|
|
|
this, true, "require-sigs",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true` (the default), any non-content-addressed path added
|
|
|
|
|
or copied to the Nix store (e.g. when substituting from a binary
|
2022-09-23 17:57:57 +00:00
|
|
|
|
cache) must have a signature by a trusted key. A trusted key is one
|
2022-09-22 18:36:26 +00:00
|
|
|
|
listed in `trusted-public-keys`, or a public key counterpart to a
|
|
|
|
|
private key stored in a file listed in `secret-key-files`.
|
2022-11-28 20:54:02 +00:00
|
|
|
|
|
2022-09-22 18:36:26 +00:00
|
|
|
|
Set to `false` to disable signature checking and trust all
|
|
|
|
|
non-content-addressed paths unconditionally.
|
2022-11-28 20:54:02 +00:00
|
|
|
|
|
2022-09-22 18:36:26 +00:00
|
|
|
|
(Content-addressed paths are inherently trustworthy and thus
|
|
|
|
|
unaffected by this configuration option.)
|
2020-08-19 16:28:04 +00:00
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<StringSet> extraPlatforms{
|
|
|
|
|
this,
|
2020-12-03 21:35:38 +00:00
|
|
|
|
getDefaultExtraPlatforms(),
|
2018-03-16 22:50:27 +00:00
|
|
|
|
"extra-platforms",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
R"(
|
2023-07-19 08:57:37 +00:00
|
|
|
|
System types of executables that can be run on this machine.
|
|
|
|
|
|
|
|
|
|
Nix will only build a given [derivation](@docroot@/language/derivations.md) locally when its `system` attribute equals any of the values specified here or in the [`system` option](#conf-system).
|
|
|
|
|
|
|
|
|
|
Setting this can be useful to build derivations locally on compatible machines:
|
|
|
|
|
- `i686-linux` executables can be run on `x86_64-linux` machines (set by default)
|
|
|
|
|
- `x86_64-darwin` executables can be run on macOS `aarch64-darwin` with Rosetta 2 (set by default where applicable)
|
|
|
|
|
- `armv6` and `armv5tel` executables can be run on `armv7`
|
|
|
|
|
- some `aarch64` machines can also natively run 32-bit ARM code
|
|
|
|
|
- `qemu-user` may be used to support non-native platforms (though this
|
|
|
|
|
may be slow and buggy)
|
|
|
|
|
|
|
|
|
|
Build systems will usually detect the target platform to be the current physical system and therefore produce machine code incompatible with what may be intended in the derivation.
|
|
|
|
|
You should design your derivation's `builder` accordingly and cross-check the results when using this option against natively-built versions of your derivation.
|
2021-12-01 15:08:23 +00:00
|
|
|
|
)", {}, false};
|
2020-08-19 16:28:04 +00:00
|
|
|
|
|
|
|
|
|
Setting<StringSet> systemFeatures{
|
2021-12-01 15:08:23 +00:00
|
|
|
|
this,
|
|
|
|
|
getDefaultSystemFeatures(),
|
2018-09-28 13:57:27 +00:00
|
|
|
|
"system-features",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
R"(
|
|
|
|
|
A set of system “features” supported by this machine, e.g. `kvm`.
|
|
|
|
|
Derivations can express a dependency on such features through the
|
|
|
|
|
derivation attribute `requiredSystemFeatures`. For example, the
|
|
|
|
|
attribute
|
2018-09-28 13:57:27 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
requiredSystemFeatures = [ "kvm" ];
|
|
|
|
|
|
|
|
|
|
ensures that the derivation can only be built on a machine with the
|
|
|
|
|
`kvm` feature.
|
2018-09-28 13:57:27 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
This setting by default includes `kvm` if `/dev/kvm` is accessible,
|
|
|
|
|
and the pseudo-features `nixos-test`, `benchmark` and `big-parallel`
|
|
|
|
|
that are used in Nixpkgs to route builds to specific machines.
|
2021-12-01 15:08:23 +00:00
|
|
|
|
)", {}, false};
|
2020-08-19 16:28:04 +00:00
|
|
|
|
|
|
|
|
|
Setting<Strings> substituters{
|
|
|
|
|
this,
|
2020-12-07 05:04:42 +00:00
|
|
|
|
Strings{"https://cache.nixos.org/"},
|
2017-04-13 18:53:23 +00:00
|
|
|
|
"substituters",
|
2020-08-19 16:28:04 +00:00
|
|
|
|
R"(
|
2023-06-14 20:49:58 +00:00
|
|
|
|
A list of [URLs of Nix stores](@docroot@/command-ref/new-cli/nix3-help-stores.md#store-url-format) to be used as substituters, separated by whitespace.
|
|
|
|
|
A substituter is an additional [store]{@docroot@/glossary.md##gloss-store} from which Nix can obtain [store objects](@docroot@/glossary.md#gloss-store-object) instead of building them.
|
2022-09-02 00:51:56 +00:00
|
|
|
|
|
2023-06-14 20:49:58 +00:00
|
|
|
|
Substituters are tried based on their priority value, which each substituter can set independently.
|
|
|
|
|
Lower value means higher priority.
|
|
|
|
|
The default is `https://cache.nixos.org`, which has a priority of 40.
|
2022-09-02 00:51:56 +00:00
|
|
|
|
|
2023-06-14 20:49:58 +00:00
|
|
|
|
At least one of the following conditions must be met for Nix to use a substituter:
|
2023-01-20 08:46:28 +00:00
|
|
|
|
|
2023-03-05 01:36:26 +00:00
|
|
|
|
- The substituter is in the [`trusted-substituters`](#conf-trusted-substituters) list
|
|
|
|
|
- The user calling Nix is in the [`trusted-users`](#conf-trusted-users) list
|
2023-01-20 08:46:28 +00:00
|
|
|
|
|
2023-06-14 20:49:58 +00:00
|
|
|
|
In addition, each store path should be trusted as described in [`trusted-public-keys`](#conf-trusted-public-keys)
|
2020-08-19 16:28:04 +00:00
|
|
|
|
)",
|
2017-04-13 18:53:23 +00:00
|
|
|
|
{"binary-caches"}};
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<StringSet> trustedSubstituters{
|
|
|
|
|
this, {}, "trusted-substituters",
|
|
|
|
|
R"(
|
2023-06-16 12:34:11 +00:00
|
|
|
|
A list of [Nix store URLs](@docroot@/command-ref/new-cli/nix3-help-stores.md#store-url-format), separated by whitespace.
|
2023-06-16 15:58:01 +00:00
|
|
|
|
These are not used by default, but users of the Nix daemon can enable them by specifying [`substituters`](#conf-substituters).
|
2023-03-05 01:36:26 +00:00
|
|
|
|
|
2023-06-15 13:57:54 +00:00
|
|
|
|
Unprivileged users (those set in only [`allowed-users`](#conf-allowed-users) but not [`trusted-users`](#conf-trusted-users)) can pass as `substituters` only those URLs listed in `trusted-substituters`.
|
2020-08-19 16:28:04 +00:00
|
|
|
|
)",
|
2017-04-20 11:20:49 +00:00
|
|
|
|
{"trusted-binary-caches"}};
|
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<unsigned int> ttlNegativeNarInfoCache{
|
|
|
|
|
this, 3600, "narinfo-cache-negative-ttl",
|
|
|
|
|
R"(
|
|
|
|
|
The TTL in seconds for negative lookups. If a store path is queried
|
|
|
|
|
from a substituter but was not found, there will be a negative
|
|
|
|
|
lookup cached in the local disk cache database for the specified
|
|
|
|
|
duration.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<unsigned int> ttlPositiveNarInfoCache{
|
|
|
|
|
this, 30 * 24 * 3600, "narinfo-cache-positive-ttl",
|
|
|
|
|
R"(
|
|
|
|
|
The TTL in seconds for positive lookups. If a store path is queried
|
|
|
|
|
from a substituter, the result of the query will be cached in the
|
|
|
|
|
local disk cache database including some of the NAR metadata. The
|
|
|
|
|
default TTL is a month, setting a shorter TTL for positive lookups
|
|
|
|
|
can be useful for binary caches that have frequent garbage
|
|
|
|
|
collection, in which case having a more frequent cache invalidation
|
|
|
|
|
would prevent trying to pull the path again and failing with a hash
|
|
|
|
|
mismatch if the build isn't reproducible.
|
|
|
|
|
)"};
|
2018-04-02 16:41:49 +00:00
|
|
|
|
|
2017-04-13 18:53:23 +00:00
|
|
|
|
Setting<bool> printMissing{this, true, "print-missing",
|
|
|
|
|
"Whether to print what paths need to be built or downloaded."};
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 03:50:18 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<std::string> preBuildHook{
|
|
|
|
|
this, "", "pre-build-hook",
|
|
|
|
|
R"(
|
|
|
|
|
If set, the path to a program that can set extra derivation-specific
|
|
|
|
|
settings for this system. This is used for settings that can't be
|
|
|
|
|
captured by the derivation model itself and are too variable between
|
|
|
|
|
different versions of the same system to be hard-coded into nix.
|
2015-04-18 20:56:02 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
The hook is passed the derivation path and, if sandboxes are
|
|
|
|
|
enabled, the sandbox directory. It can then modify the sandbox and
|
|
|
|
|
send a series of commands to modify various settings to stdout. The
|
|
|
|
|
currently recognized commands are:
|
2019-07-11 18:23:03 +00:00
|
|
|
|
|
2021-04-23 12:30:42 +00:00
|
|
|
|
- `extra-sandbox-paths`\
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Pass a list of files and directories to be included in the
|
|
|
|
|
sandbox for this build. One entry per line, terminated by an
|
|
|
|
|
empty line. Entries have the same format as `sandbox-paths`.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<std::string> postBuildHook{
|
|
|
|
|
this, "", "post-build-hook",
|
|
|
|
|
R"(
|
|
|
|
|
Optional. The path to a program to execute after each build.
|
|
|
|
|
|
|
|
|
|
This option is only settable in the global `nix.conf`, or on the
|
|
|
|
|
command line by trusted users.
|
|
|
|
|
|
|
|
|
|
When using the nix-daemon, the daemon executes the hook as `root`.
|
|
|
|
|
If the nix-daemon is not involved, the hook runs as the user
|
|
|
|
|
executing the nix-build.
|
|
|
|
|
|
|
|
|
|
- The hook executes after an evaluation-time build.
|
|
|
|
|
|
|
|
|
|
- The hook does not execute on substituted paths.
|
|
|
|
|
|
|
|
|
|
- The hook's output always goes to the user's terminal.
|
|
|
|
|
|
|
|
|
|
- If the hook fails, the build succeeds but no further builds
|
|
|
|
|
execute.
|
2015-04-18 20:56:02 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
- The hook executes synchronously, and blocks other builds from
|
|
|
|
|
progressing while it runs.
|
2019-07-11 18:23:03 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
The program executes with no arguments. The program's environment
|
|
|
|
|
contains the following environment variables:
|
|
|
|
|
|
2022-11-28 20:54:02 +00:00
|
|
|
|
- `DRV_PATH`
|
2020-08-19 16:28:04 +00:00
|
|
|
|
The derivation for the built paths.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
`/nix/store/5nihn1a7pa8b25l9zafqaqibznlvvp3f-bash-4.4-p23.drv`
|
|
|
|
|
|
2022-11-28 20:54:02 +00:00
|
|
|
|
- `OUT_PATHS`
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Output paths of the built derivation, separated by a space
|
|
|
|
|
character.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
`/nix/store/zf5lbh336mnzf1nlswdn11g4n2m8zh3g-bash-4.4-p23-dev
|
|
|
|
|
/nix/store/rjxwxwv1fpn9wa2x5ssk5phzwlcv4mna-bash-4.4-p23-doc
|
|
|
|
|
/nix/store/6bqvbzjkcp9695dq0dpl5y43nvy37pq1-bash-4.4-p23-info
|
|
|
|
|
/nix/store/r7fng3kk3vlpdlh2idnrbn37vh4imlj2-bash-4.4-p23-man
|
|
|
|
|
/nix/store/xfghy8ixrhz3kyy6p724iv3cxji088dx-bash-4.4-p23`.
|
|
|
|
|
)"};
|
|
|
|
|
|
2022-08-19 10:40:22 +00:00
|
|
|
|
Setting<unsigned int> downloadSpeed {
|
|
|
|
|
this, 0, "download-speed",
|
|
|
|
|
R"(
|
2022-08-20 16:21:36 +00:00
|
|
|
|
Specify the maximum transfer rate in kilobytes per second you want
|
2022-08-22 12:14:14 +00:00
|
|
|
|
Nix to use for downloads.
|
2022-08-19 10:40:22 +00:00
|
|
|
|
)"};
|
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<std::string> netrcFile{
|
|
|
|
|
this, fmt("%s/%s", nixConfDir, "netrc"), "netrc-file",
|
|
|
|
|
R"(
|
|
|
|
|
If set to an absolute path to a `netrc` file, Nix will use the HTTP
|
|
|
|
|
authentication credentials in this file when trying to download from
|
|
|
|
|
a remote host through HTTP or HTTPS. Defaults to
|
|
|
|
|
`$NIX_CONF_DIR/netrc`.
|
|
|
|
|
|
|
|
|
|
The `netrc` file consists of a list of accounts in the following
|
|
|
|
|
format:
|
|
|
|
|
|
|
|
|
|
machine my-machine
|
|
|
|
|
login my-username
|
|
|
|
|
password my-password
|
|
|
|
|
|
|
|
|
|
For the exact syntax, see [the `curl`
|
|
|
|
|
documentation](https://ec.haxx.se/usingcurl-netrc.html).
|
|
|
|
|
|
|
|
|
|
> **Note**
|
2022-11-28 20:54:02 +00:00
|
|
|
|
>
|
2020-08-19 16:28:04 +00:00
|
|
|
|
> This must be an absolute path, and `~` is not resolved. For
|
|
|
|
|
> example, `~/.netrc` won't resolve to your home directory's
|
|
|
|
|
> `.netrc`.
|
|
|
|
|
)"};
|
2017-02-16 13:46:36 +00:00
|
|
|
|
|
2023-03-17 17:32:18 +00:00
|
|
|
|
Setting<Path> caFile{
|
|
|
|
|
this, getDefaultSSLCertFile(), "ssl-cert-file",
|
|
|
|
|
R"(
|
|
|
|
|
The path of a file containing CA certificates used to
|
2023-03-27 12:08:39 +00:00
|
|
|
|
authenticate `https://` downloads. Nix by default will use
|
|
|
|
|
the first of the following files that exists:
|
|
|
|
|
|
|
|
|
|
1. `/etc/ssl/certs/ca-certificates.crt`
|
|
|
|
|
2. `/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt`
|
|
|
|
|
|
|
|
|
|
The path can be overridden by the following environment
|
|
|
|
|
variables, in order of precedence:
|
|
|
|
|
|
|
|
|
|
1. `NIX_SSL_CERT_FILE`
|
|
|
|
|
2. `SSL_CERT_FILE`
|
2023-03-17 17:32:18 +00:00
|
|
|
|
)"};
|
2017-03-06 19:30:35 +00:00
|
|
|
|
|
2017-07-04 13:43:06 +00:00
|
|
|
|
#if __linux__
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<bool> filterSyscalls{
|
|
|
|
|
this, true, "filter-syscalls",
|
|
|
|
|
R"(
|
|
|
|
|
Whether to prevent certain dangerous system calls, such as
|
|
|
|
|
creation of setuid/setgid files or adding ACLs or extended
|
|
|
|
|
attributes. Only disable this if you're aware of the
|
|
|
|
|
security implications.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<bool> allowNewPrivileges{
|
|
|
|
|
this, false, "allow-new-privileges",
|
|
|
|
|
R"(
|
|
|
|
|
(Linux-specific.) By default, builders on Linux cannot acquire new
|
|
|
|
|
privileges by calling setuid/setgid programs or programs that have
|
|
|
|
|
file capabilities. For example, programs such as `sudo` or `ping`
|
|
|
|
|
will fail. (Note that in sandbox builds, no such programs are
|
|
|
|
|
available unless you bind-mount them into the sandbox via the
|
|
|
|
|
`sandbox-paths` option.) You can allow the use of such programs by
|
|
|
|
|
enabling this option. This is impure and usually undesirable, but
|
|
|
|
|
may be useful in certain scenarios (e.g. to spin up containers or
|
|
|
|
|
set up userspace network interfaces in tests).
|
|
|
|
|
)"};
|
2021-05-03 07:54:31 +00:00
|
|
|
|
|
|
|
|
|
Setting<StringSet> ignoredAcls{
|
2022-06-08 08:32:14 +00:00
|
|
|
|
this, {"security.selinux", "system.nfs4_acl", "security.csm"}, "ignored-acls",
|
2021-05-03 07:54:31 +00:00
|
|
|
|
R"(
|
|
|
|
|
A list of ACLs that should be ignored, normally Nix attempts to
|
|
|
|
|
remove all ACLs from files and directories in the Nix store, but
|
|
|
|
|
some ACLs like `security.selinux` or `system.nfs4_acl` can't be
|
|
|
|
|
removed even by root. Therefore it's best to just ignore them.
|
|
|
|
|
)"};
|
2017-07-04 13:43:06 +00:00
|
|
|
|
#endif
|
2017-07-17 11:07:08 +00:00
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Setting<Strings> hashedMirrors{
|
|
|
|
|
this, {}, "hashed-mirrors",
|
|
|
|
|
R"(
|
|
|
|
|
A list of web servers used by `builtins.fetchurl` to obtain files by
|
2023-05-24 15:05:40 +00:00
|
|
|
|
hash. Given a hash type *ht* and a base-16 hash *h*, Nix will try to
|
|
|
|
|
download the file from *hashed-mirror*/*ht*/*h*. This allows files to
|
|
|
|
|
be downloaded even if they have disappeared from their original URI.
|
|
|
|
|
For example, given an example mirror `http://tarballs.nixos.org/`,
|
|
|
|
|
when building the derivation
|
2020-08-19 16:28:04 +00:00
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchurl {
|
|
|
|
|
url = "https://example.org/foo-1.2.3.tar.xz";
|
|
|
|
|
sha256 = "2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Nix will attempt to download this file from
|
|
|
|
|
`http://tarballs.nixos.org/sha256/2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae`
|
|
|
|
|
first. If it is not available there, if will try the original URI.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<uint64_t> minFree{
|
|
|
|
|
this, 0, "min-free",
|
|
|
|
|
R"(
|
|
|
|
|
When free disk space in `/nix/store` drops below `min-free` during a
|
|
|
|
|
build, Nix performs a garbage-collection until `max-free` bytes are
|
|
|
|
|
available or there is no more garbage. A value of `0` (the default)
|
|
|
|
|
disables this feature.
|
|
|
|
|
)"};
|
|
|
|
|
|
|
|
|
|
Setting<uint64_t> maxFree{
|
|
|
|
|
this, std::numeric_limits<uint64_t>::max(), "max-free",
|
|
|
|
|
R"(
|
|
|
|
|
When a garbage collection is triggered by the `min-free` option, it
|
|
|
|
|
stops as soon as `max-free` bytes are available. The default is
|
|
|
|
|
infinity (i.e. delete all garbage).
|
|
|
|
|
)"};
|
2017-09-05 18:43:42 +00:00
|
|
|
|
|
2019-08-02 15:07:33 +00:00
|
|
|
|
Setting<uint64_t> minFreeCheckInterval{this, 5, "min-free-check-interval",
|
|
|
|
|
"Number of seconds between checking free disk space."};
|
|
|
|
|
|
2021-01-28 12:37:04 +00:00
|
|
|
|
PluginFilesSetting pluginFiles{
|
2020-08-19 16:28:04 +00:00
|
|
|
|
this, {}, "plugin-files",
|
|
|
|
|
R"(
|
|
|
|
|
A list of plugin files to be loaded by Nix. Each of these files will
|
|
|
|
|
be dlopened by Nix, allowing them to affect execution through static
|
|
|
|
|
initialization. In particular, these plugins may construct static
|
|
|
|
|
instances of RegisterPrimOp to add new primops or constants to the
|
|
|
|
|
expression language, RegisterStoreImplementation to add new store
|
|
|
|
|
implementations, RegisterCommand to add new subcommands to the `nix`
|
|
|
|
|
command, and RegisterSetting to add new nix config settings. See the
|
|
|
|
|
constructors for those types for more details.
|
|
|
|
|
|
2021-02-22 22:10:55 +00:00
|
|
|
|
Warning! These APIs are inherently unstable and may change from
|
|
|
|
|
release to release.
|
|
|
|
|
|
2020-08-19 16:28:04 +00:00
|
|
|
|
Since these files are loaded into the same address space as Nix
|
|
|
|
|
itself, they must be DSOs compatible with the instance of Nix
|
|
|
|
|
running at the time (i.e. compiled against the same headers, not
|
|
|
|
|
linked to any incompatible libraries). They should not be linked to
|
|
|
|
|
any Nix libs directly, as those will be available already at load
|
|
|
|
|
time.
|
|
|
|
|
|
|
|
|
|
If an entry in the list is a directory, all files in the directory
|
|
|
|
|
are loaded as plugins (non-recursively).
|
|
|
|
|
)"};
|
2019-10-16 15:45:09 +00:00
|
|
|
|
|
2018-04-09 21:46:20 +00:00
|
|
|
|
Setting<size_t> narBufferSize{this, 32 * 1024 * 1024, "nar-buffer-size",
|
|
|
|
|
"Maximum size of NARs before spilling them to disk."};
|
2020-07-14 11:56:18 +00:00
|
|
|
|
|
2020-09-21 16:29:08 +00:00
|
|
|
|
Setting<bool> allowSymlinkedStore{
|
2020-09-21 15:32:22 +00:00
|
|
|
|
this, false, "allow-symlinked-store",
|
2020-09-18 16:10:39 +00:00
|
|
|
|
R"(
|
2020-09-18 16:18:45 +00:00
|
|
|
|
If set to `true`, Nix will stop complaining if the store directory
|
|
|
|
|
(typically /nix/store) contains symlink components.
|
2020-09-18 16:10:39 +00:00
|
|
|
|
|
2020-09-18 16:18:45 +00:00
|
|
|
|
This risks making some builds "impure" because builders sometimes
|
|
|
|
|
"canonicalise" paths by resolving all symlink components. Problems
|
2020-09-18 16:10:39 +00:00
|
|
|
|
occur if those builds are then deployed to machines where /nix/store
|
|
|
|
|
resolves to a different location from that of the build machine. You
|
|
|
|
|
can enable this setting if you are sure you're not going to do that.
|
|
|
|
|
)"};
|
2021-11-17 20:35:21 +00:00
|
|
|
|
|
|
|
|
|
Setting<bool> useXDGBaseDirectories{
|
|
|
|
|
this, false, "use-xdg-base-directories",
|
|
|
|
|
R"(
|
|
|
|
|
If set to `true`, Nix will conform to the [XDG Base Directory Specification] for files in `$HOME`.
|
2023-02-17 17:57:15 +00:00
|
|
|
|
The environment variables used to implement this are documented in the [Environment Variables section](@docroot@/command-ref/env-common.md).
|
2021-11-17 20:35:21 +00:00
|
|
|
|
|
|
|
|
|
[XDG Base Directory Specification]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
|
|
|
|
|
|
|
|
> **Warning**
|
|
|
|
|
> This changes the location of some well-known symlinks that Nix creates, which might break tools that rely on the old, non-XDG-conformant locations.
|
|
|
|
|
|
|
|
|
|
In particular, the following locations change:
|
|
|
|
|
|
|
|
|
|
| Old | New |
|
|
|
|
|
|-------------------|--------------------------------|
|
|
|
|
|
| `~/.nix-profile` | `$XDG_STATE_HOME/nix/profile` |
|
|
|
|
|
| `~/.nix-defexpr` | `$XDG_STATE_HOME/nix/defexpr` |
|
|
|
|
|
| `~/.nix-channels` | `$XDG_STATE_HOME/nix/channels` |
|
2023-06-02 15:38:17 +00:00
|
|
|
|
|
2023-07-19 09:01:48 +00:00
|
|
|
|
If you already have Nix installed and are using [profiles](@docroot@/package-management/profiles.md) or [channels](@docroot@/command-ref/nix-channel.md), you should migrate manually when you enable this option.
|
2023-06-02 15:38:17 +00:00
|
|
|
|
If `$XDG_STATE_HOME` is not set, use `$HOME/.local/state/nix` instead of `$XDG_STATE_HOME/nix`.
|
|
|
|
|
This can be achieved with the following shell commands:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
nix_state_home=${XDG_STATE_HOME-$HOME/.local/state}/nix
|
|
|
|
|
mkdir -p $nix_state_home
|
|
|
|
|
mv $HOME/.nix-profile $nix_state_home/profile
|
|
|
|
|
mv $HOME/.nix-defexpr $nix_state_home/defexpr
|
|
|
|
|
mv $HOME/.nix-channels $nix_state_home/channels
|
|
|
|
|
```
|
2021-11-17 20:35:21 +00:00
|
|
|
|
)"
|
|
|
|
|
};
|
2012-07-30 23:55:41 +00:00
|
|
|
|
};
|
2008-11-20 12:25:11 +00:00
|
|
|
|
|
2011-11-22 17:28:41 +00:00
|
|
|
|
|
2012-07-30 23:55:41 +00:00
|
|
|
|
// FIXME: don't use a global variable.
|
|
|
|
|
extern Settings settings;
|
2012-07-30 20:09:54 +00:00
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* This should be called after settings are initialized, but before
|
|
|
|
|
* anything else
|
|
|
|
|
*/
|
2018-02-08 16:26:18 +00:00
|
|
|
|
void initPlugins();
|
|
|
|
|
|
2018-03-27 16:41:31 +00:00
|
|
|
|
void loadConfFile();
|
2011-11-22 17:28:41 +00:00
|
|
|
|
|
2020-03-30 13:31:14 +00:00
|
|
|
|
// Used by the Settings constructor
|
|
|
|
|
std::vector<Path> getUserConfigFiles();
|
|
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
|
extern const std::string nixVersion;
|
2012-11-27 12:29:55 +00:00
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* NB: This is not sufficient. You need to call initNix()
|
|
|
|
|
*/
|
2022-12-19 13:06:07 +00:00
|
|
|
|
void initLibStore();
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* It's important to initialize before doing _anything_, which is why we
|
|
|
|
|
* call upon the programmer to handle this correctly. However, we only add
|
|
|
|
|
* this in a key locations, so as not to litter the code.
|
|
|
|
|
*/
|
2022-12-19 13:06:07 +00:00
|
|
|
|
void assertLibStoreInitialized();
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
|
}
|