diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d975ebfc7ea533..fbbdeefc322e44 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -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 = "address@example.org"; - matrix = "@user:example.org"; - github = "GithubUsername"; - githubId = your-github-id; + # Optional, but at least one of email, matrix or githubId must be given + email = "address@example.org"; + matrix = "@user:example.org"; + github = "GithubUsername"; + githubId = your-github-id; - keys = [{ + keys = [{ fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; - }]; + }]; }; ``` @@ -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"; }; ``` @@ -12720,6 +12720,14 @@ githubId = 5624721; name = "Ben Wolsieffer"; }; + lordmzte = { + name = "Moritz Thomae"; + email = "lord@mzte.de"; + matrix = "@lordmzte:mzte.de"; + github = "LordMZTE"; + githubId = 28735087; + keys = [ { fingerprint = "AB47 3D70 53D2 74CA DC2C 230C B648 02DC 33A6 4FF6"; } ]; + }; lord-valen = { name = "Lord Valen"; matrix = "@lord-valen:matrix.org"; @@ -20081,6 +20089,12 @@ githubId = 1443459; name = "Sheena Artrip"; }; + serhao = { + name = "Sin Ser'hao"; + email = "shobu_serhao@proton.me"; + github = "shobu13"; + githubId = 21972673; + }; sheepforce = { email = "phillip.seeber@googlemail.com"; github = "sheepforce"; diff --git a/pkgs/by-name/hy/hyprland-workspaces/package.nix b/pkgs/by-name/hy/hyprland-workspaces/package.nix index de6073a2426686..3d4c79f70a8ebe 100644 --- a/pkgs/by-name/hy/hyprland-workspaces/package.nix +++ b/pkgs/by-name/hy/hyprland-workspaces/package.nix @@ -23,7 +23,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"; }; -} \ No newline at end of file +}