diff options
author | regnat <rg@regnat.ovh> | 2021-07-15 18:17:18 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-07-15 18:41:56 +0200 |
commit | 9b1f3cbc133eafdaadf89ee9e4f3ce6a11cbbcce (patch) | |
tree | cefd2afaa698da973ad5ccfc58ddb083ea4fa4f0 /src/libutil/config.cc | |
parent | bdc24efc87caf2f0a42345bc83b3c6409889ca82 (diff) |
Forward the whole Nix config to the post-build-hook
Fill `NIX_CONFIG` with the value of the current Nix configuration before
calling the post-build-hook.
That way the whole configuration (including the possible
`experimental-features`, a possibly `--store` option or whatever) will
be made available to the hook
Diffstat (limited to 'src/libutil/config.cc')
-rw-r--r-- | src/libutil/config.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/libutil/config.cc b/src/libutil/config.cc index bda07cd55..2a5f913e6 100644 --- a/src/libutil/config.cc +++ b/src/libutil/config.cc @@ -152,6 +152,16 @@ nlohmann::json Config::toJSON() return res; } +std::string Config::toKeyValue() +{ + auto res = std::string(); + for (auto & s : _settings) + if (!s.second.isAlias) { + res += fmt("%s = %s\n", s.first, s.second.setting->to_string()); + } + return res; +} + void Config::convertToArgs(Args & args, const std::string & category) { for (auto & s : _settings) @@ -385,6 +395,16 @@ nlohmann::json GlobalConfig::toJSON() return res; } +std::string GlobalConfig::toKeyValue() +{ + std::string res; + std::map<std::string, Config::SettingInfo> settings; + globalConfig.getSettings(settings); + for (auto & s : settings) + res += fmt("%s = %s\n", s.first, s.second.value); + return res; +} + void GlobalConfig::convertToArgs(Args & args, const std::string & category) { for (auto & config : *configRegistrations) |