mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
treewide: add missing option descriptions
The new options processor errors out on these by default, and it's good for every option to have documentation in general.
This commit is contained in:
parent
59b933653a
commit
11b09b10e4
3 changed files with 6 additions and 0 deletions
|
@ -18,18 +18,22 @@ let
|
||||||
token_endpoint = mkOption {
|
token_endpoint = mkOption {
|
||||||
type = nullOr str;
|
type = nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
|
description = lib.mdDoc "The OAuth2 token endpoint.";
|
||||||
};
|
};
|
||||||
client_id = mkOption {
|
client_id = mkOption {
|
||||||
type = nullOr str;
|
type = nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
|
description = lib.mdDoc "The OAuth2 client identifier.";
|
||||||
};
|
};
|
||||||
client_secret = mkOption {
|
client_secret = mkOption {
|
||||||
type = nullOr str;
|
type = nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
|
description = lib.mdDoc "The OAuth2 client secret.";
|
||||||
};
|
};
|
||||||
scope = mkOption {
|
scope = mkOption {
|
||||||
type = nullOr str;
|
type = nullOr str;
|
||||||
default = null;
|
default = null;
|
||||||
|
description = lib.mdDoc "The OAuth2 requested scope.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -71,6 +71,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
description = "Attribute set of papis libraries.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -207,6 +207,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
description = "Attribute set of Thunderbird profiles.";
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue