about summary refs log tree commit diff
path: root/src/nix/show-config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/show-config.cc')
-rw-r--r--src/nix/show-config.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nix/show-config.cc b/src/nix/show-config.cc
index aade2adeace4..e354891a82e4 100644
--- a/src/nix/show-config.cc
+++ b/src/nix/show-config.cc
@@ -7,13 +7,10 @@
 
 using namespace nix;
 
-struct CmdShowConfig : Command
+struct CmdShowConfig : Command, MixJSON
 {
-    bool json = false;
-
     CmdShowConfig()
     {
-        mkFlag(0, "json", "produce JSON output", &json);
     }
 
     std::string name() override