aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/store-api.hh
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-06 00:31:16 +0100
committereldritch horrors <pennae@lix.systems>2024-03-05 23:35:22 -0700
commitbfe2facede727927a91bf19036430844df2f18b9 (patch)
treef5f1592a94ea00a11327d40a2c9b3cd38b73ab5a /src/libstore/store-api.hh
parente8f1acfb188e53e7e62b79d0e6beab0605640d7f (diff)
Merge pull request #9443 from ivan770/reproducibility
doc: fix machine-specific capabilities leaking (cherry picked from commit dda0e34ecf16bb1c736d585414122a7e3587db70) Change-Id: I3d07cc5039ee954b215a7a27caa3bf7359d92c26
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r--src/libstore/store-api.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh
index f4a3ab0e3..3e49c3d95 100644
--- a/src/libstore/store-api.hh
+++ b/src/libstore/store-api.hh
@@ -164,8 +164,10 @@ struct StoreConfig : public Config
Setting<StringSet> systemFeatures{this, getDefaultSystemFeatures(),
"system-features",
- "Optional features that the system this store builds on implements (like \"kvm\")."};
-
+ "Optional features that the system this store builds on implements (like \"kvm\").",
+ {},
+ // Don't document the machine-specific default value
+ false};
};
class Store : public std::enable_shared_from_this<Store>, public virtual StoreConfig