diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T13·04+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T13·04+0100 |
commit | 5ef5d70b5e3dec6abf72b22e531f527fff82b375 (patch) | |
tree | 2d7250e0cfe033b7cba4bdbb9b46a5785e591153 /src/nix | |
parent | c9c3fc710ba6995b20e078523aa616323dc5759a (diff) |
Make config options available to legacy commands
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/main.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nix/main.cc b/src/nix/main.cc index 060402cd08d5..06bb8a1c3043 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -43,10 +43,6 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs .longName("version") .description("show version information") .handler([&]() { printVersion(programName); }); - - std::string cat = "config"; - settings.convertToArgs(*this, cat); - hiddenCategories.insert(cat); } void printFlags(std::ostream & out) override |