aboutsummaryrefslogtreecommitdiff
path: root/src/nix/doctor.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2023-04-04 21:34:20 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2023-04-04 21:34:20 -0400
commit3f98353f196bfd1da3641751f4f7826f42581893 (patch)
tree5562ce20360bfd70e4b3aee53e0d92302d0d94a4 /src/nix/doctor.cc
parentbdeeffff967a513b6a35165bb476d24491a03e23 (diff)
parentd93c1514ebcf71390c8a8070759487e5a40dcc6f (diff)
Merge remote-tracking branch 'upstream/master' into list-experimental-features
Diffstat (limited to 'src/nix/doctor.cc')
-rw-r--r--src/nix/doctor.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nix/doctor.cc b/src/nix/doctor.cc
index 7da4549a1..354b03cf6 100644
--- a/src/nix/doctor.cc
+++ b/src/nix/doctor.cc
@@ -39,6 +39,14 @@ struct CmdDoctor : StoreCommand
{
bool success = true;
+ /**
+ * This command is stable before the others
+ */
+ std::optional<ExperimentalFeature> experimentalFeature() override
+ {
+ return std::nullopt;
+ }
+
std::string description() override
{
return "check your system for potential problems and print a PASS or FAIL for each check";