1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-05 12:21:48 +02:00

List deprecated option aliases in the docs

This commit is contained in:
Eelco Dolstra 2020-08-20 11:13:17 +02:00
parent acb99f03f9
commit 3c4f8c9175
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 8 additions and 2 deletions

View file

@ -139,6 +139,7 @@ nlohmann::json Config::toJSON()
if (!s.second.isAlias) {
auto obj = nlohmann::json::object();
obj.emplace("description", s.second.setting->description);
obj.emplace("aliases", s.second.setting->aliases);
obj.emplace("value", s.second.setting->toJSON());
res.emplace(s.first, obj);
}