forked from lix-project/lix
efaffaa9d1
(cherry picked from commit 8f41847394
)
32 lines
797 B
C++
32 lines
797 B
C++
#include "command.hh"
|
|
#include "common-args.hh"
|
|
#include "shared.hh"
|
|
#include "store-api.hh"
|
|
#include "json.hh"
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdShowConfig : Command, MixJSON
|
|
{
|
|
std::string description() override
|
|
{
|
|
return "show the Nix configuration";
|
|
}
|
|
|
|
void run() override
|
|
{
|
|
if (json) {
|
|
// FIXME: use appropriate JSON types (bool, ints, etc).
|
|
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");
|