maintainers: add fallenbagel to the maintainers

Signed-off-by: Nicolas Dumazet <nicdumz.commits@gmail.com>
This commit is contained in:
fallenbagel
2026-02-07 01:07:19 +08:00
committed by Nicolas Dumazet
parent 849bac24f8
commit 25ac400605
4 changed files with 18 additions and 3 deletions

View File

@@ -8508,6 +8508,12 @@
githubId = 88741530;
name = "Fabian Rigoll";
};
fallenbagel = {
name = "fallenbagel";
github = "fallenbagel";
githubId = 98979876;
email = "hello@fallenbagel.com";
};
famfo = {
name = "famfo";
email = "famfo+nixpkgs@famfo.xyz";

View File

@@ -12,7 +12,10 @@ in
(lib.mkRenamedOptionModule [ "services" "jellyseerr" ] [ "services" "seerr" ])
];
meta.maintainers = [ lib.maintainers.camillemndn ];
meta.maintainers = with lib.maintainers; [
camillemndn
fallenbagel
];
options.services.seerr = {
enable = lib.mkEnableOption "Seerr, a requests manager for Jellyfin";

View File

@@ -1,7 +1,10 @@
{ lib, ... }:
{
name = "seerr";
meta.maintainers = with lib.maintainers; [ matteopacini ];
meta.maintainers = with lib.maintainers; [
matteopacini
fallenbagel
];
nodes.machine =
{ pkgs, ... }:

View File

@@ -92,7 +92,10 @@ stdenv.mkDerivation (finalAttrs: {
description = "Open-source media request and discovery manager for Jellyfin, Plex, and Emby";
homepage = "https://github.com/seerr-team/seerr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ camillemndn ];
maintainers = with lib.maintainers; [
camillemndn
fallenbagel
];
platforms = lib.platforms.linux;
mainProgram = "seerr";
};