nix-super/src/nix/show-config.cc

34 lines
854 B
C++
Raw Normal View History

#include "command.hh"
#include "common-args.hh"
#include "shared.hh"
#include "store-api.hh"
#include "json.hh"
using namespace nix;
2017-04-24 15:21:36 +03:00
struct CmdShowConfig : Command, MixJSON
{
std::string description() override
{
return "show the Nix configuration";
}
2020-05-05 16:18:23 +03:00
Category category() override { return catUtility; }
void run() override
{
if (json) {
// FIXME: use appropriate JSON types (bool, ints, etc).
2017-11-14 15:27:01 +02:00
JSONObject jsonObj(std::cout);
globalConfig.toJSON(jsonObj);
} else {
std::map<std::string, Config::SettingInfo> settings;
globalConfig.getSettings(settings);
for (auto & s : settings)
logger->stdout("%s = %s", s.first, s.second.value);
}
}
};
static auto r1 = registerCommand<CmdShowConfig>("show-config");