about summary refs log tree commit diff
path: root/third_party/nix/src/nix/show-config.cc
blob: 8e27fd168f64f3b9e6f1142241f404e16319773b (plain) (blame)
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
#include "libmain/common-args.hh"
#include "libmain/shared.hh"
#include "libstore/store-api.hh"
#include "libutil/json.hh"
#include "nix/command.hh"

using namespace nix;

struct CmdShowConfig : Command, MixJSON {
  CmdShowConfig() = default;

  std::string name() override { return "show-config"; }

  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) {
        std::cout << s.first + " = " + s.second.value + "\n";
      }
    }
  }
};

static RegisterCommand r1(make_ref<CmdShowConfig>());