Skip to content

Commit

Permalink
maintainers: add serhao
Browse files Browse the repository at this point in the history
  • Loading branch information
shobu13 committed Dec 8, 2024
1 parent 8c265d3 commit 2d6c1ce
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
28 changes: 17 additions & 11 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
List of NixOS maintainers.
```nix
handle = {
# Required
name = "Your name";
# Required
name = "Your name";

# Optional, but at least one of email, matrix or githubId must be given
email = "[email protected]";
matrix = "@user:example.org";
github = "GithubUsername";
githubId = your-github-id;
# Optional, but at least one of email, matrix or githubId must be given
email = "[email protected]";
matrix = "@user:example.org";
github = "GithubUsername";
githubId = your-github-id;

keys = [{
keys = [{
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
}];
}];
};
```

Expand All @@ -30,14 +30,14 @@
Specifying a GitHub account ensures that you automatically:
- get invited to the @NixOS/nixpkgs-maintainers team ;
- once you are part of the @NixOS org, OfBorg will request you review
pull requests that modify a package for which you are a maintainer.
pull requests that modify a package for which you are a maintainer.

`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.

If `github` begins with a numeral, `handle` should be prefixed with an underscore.
```nix
_1example = {
github = "1example";
github = "1example";
};
```

Expand Down Expand Up @@ -20205,6 +20205,12 @@
githubId = 56278796;
name = "Sergio Ribera";
};
serhao = {
name = "Sin Ser'hao";
email = "[email protected]";
github = "shobu13";
githubId = 21972673;
};
sersorrel = {
email = "[email protected]";
github = "sersorrel";
Expand Down
8 changes: 6 additions & 2 deletions pkgs/by-name/hy/hyprland-workspaces/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/FieldofClay/hyprland-workspaces";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kiike donovanglover ];
maintainers = with maintainers; [
kiike
donovanglover
serhao
];
mainProgram = "hyprland-workspaces";
};
}
}

0 comments on commit 2d6c1ce

Please sign in to comment.