2017-04-13 18:59:38 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "json.hh"
|
|
|
|
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
if (json) {
|
|
|
|
// FIXME: use appropriate JSON types (bool, ints, etc).
|
2017-11-14 13:27:01 +00:00
|
|
|
JSONObject jsonObj(std::cout);
|
2018-03-27 16:41:31 +00:00
|
|
|
globalConfig.toJSON(jsonObj);
|
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)
|
|
|
|
std::cout << s.first + " = " + s.second.value + "\n";
|
2017-04-13 18:59:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdShowConfig>("show-config");
|