mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 08:46:16 +02:00
1fc74afbba
Instead of needing to run `nix show-config --json | jq -r '."warn-dirty".value'` to view the value of `warn-dirty`, you can now run `nix show-config warn-dirty`.
59 lines
1.5 KiB
C++
59 lines
1.5 KiB
C++
#include "command.hh"
|
|
#include "common-args.hh"
|
|
#include "shared.hh"
|
|
#include "store-api.hh"
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdShowConfig : Command, MixJSON
|
|
{
|
|
std::optional<std::string> name;
|
|
|
|
CmdShowConfig() {
|
|
expectArgs({
|
|
.label = {"name"},
|
|
.optional = true,
|
|
.handler = {&name},
|
|
});
|
|
}
|
|
|
|
std::string description() override
|
|
{
|
|
return "show the Nix configuration or the value of a specific setting";
|
|
}
|
|
|
|
Category category() override { return catUtility; }
|
|
|
|
void run() override
|
|
{
|
|
if (name) {
|
|
if (json) {
|
|
throw UsageError("'--json' is not supported when specifying a setting name");
|
|
}
|
|
|
|
std::map<std::string, Config::SettingInfo> settings;
|
|
globalConfig.getSettings(settings);
|
|
auto setting = settings.find(*name);
|
|
|
|
if (setting == settings.end()) {
|
|
throw Error("could not find setting '%1%'", *name);
|
|
} else {
|
|
const auto & value = setting->second.value;
|
|
logger->cout("%s", value);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
if (json) {
|
|
// FIXME: use appropriate JSON types (bool, ints, etc).
|
|
logger->cout("%s", globalConfig.toJSON().dump());
|
|
} else {
|
|
logger->cout("%s", globalConfig.toKeyValue());
|
|
}
|
|
}
|
|
};
|
|
|
|
static auto rShowConfig = registerCommand<CmdShowConfig>("show-config");
|