aboutsummaryrefslogtreecommitdiff
path: root/src/nix/show-config.cc
blob: 4fd8886de08b0dc98a805b1bd2a6159b3a8ef54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#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";
    }

    Category category() override { return catUtility; }

    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");