core/maintainers/maintainer-list.nix

51 lines
1.6 KiB
Nix
Raw Normal View History

/*
List of Aux maintainers.
```nix
handle = {
# Required
name = "Your name";
forgejo = "forgejoUsername";
forgejoId = your-forgejo-id;
2024-05-02 00:46:19 +00:00
# Optional, but at least one of email or matrix must be given
email = "address@example.org";
matrix = "@user:example.org";
2024-05-02 00:46:19 +00:00
keys = [{
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
}];
};
```
2024-05-02 00:46:19 +00:00
where
2024-05-02 00:46:19 +00:00
- `handle` is the handle you are going to use in nixpkgs expressions,
- `name` is a name that people would know and recognize you by,
- `email` is your maintainer email address,
- `matrix` is your Matrix user ID,
- `forgejo` is your forgejo handle (as it appears in the URL of your profile page, `https://git.auxolotl.org/<userhandle>`),
- `forgejoId` is your forgejo user ID, which can be found at `https://git.auxolotl.org/api/v1/users/<username>`,
- `keys` is a list of your PGP/GPG key fingerprints.
2024-05-02 00:46:19 +00:00
`handle == forgejo` is strongly preferred whenever `forgejo` is an acceptable attribute name and is short and convenient.
2024-05-02 00:46:19 +00:00
If `forgejo` begins with a numeral, `handle` should be prefixed with an underscore.
```nix
_1example = {
forgejo = "1example";
};
```
2024-05-02 00:46:19 +00:00
Add PGP/GPG keys only if you actually use them to sign commits and/or mail.
2024-05-02 00:46:19 +00:00
To get the required PGP/GPG values for a key run
```shell
gpg --fingerprint <email> | head -n 2
```
2024-05-02 00:46:19 +00:00
!!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth.
2024-05-02 00:46:19 +00:00
More fields may be added in the future, however, in order to comply with GDPR this file should stay as minimal as possible.
2024-05-02 00:46:19 +00:00
*/
{ }