2017-04-13 18:59:38 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2020-08-20 09:02:16 +00:00
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
2017-04-13 18:59:38 +00:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2017-04-24 12:21:36 +00:00
|
|
|
struct CmdShowConfig : Command, MixJSON
|
2017-04-13 18:59:38 +00:00
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "show the Nix configuration";
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2017-04-13 18:59:38 +00:00
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
if (json) {
|
|
|
|
// FIXME: use appropriate JSON types (bool, ints, etc).
|
2020-09-04 02:40:36 +00:00
|
|
|
logger->stdout_("%s", globalConfig.toJSON().dump());
|
2017-04-13 18:59:38 +00:00
|
|
|
} else {
|
2018-03-27 16:41:31 +00:00
|
|
|
std::map<std::string, Config::SettingInfo> settings;
|
|
|
|
globalConfig.getSettings(settings);
|
|
|
|
for (auto & s : settings)
|
2020-06-25 20:27:00 +00:00
|
|
|
logger->stdout_("%s = %s", s.first, s.second.value);
|
2017-04-13 18:59:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdShowConfig>("show-config");
|