maintainers/team-list: add nixos-rebuild team

(cherry picked from commit f92bc6c218)
This commit is contained in:
Thiago Kenji Okada
2025-06-10 18:47:48 +01:00
committed by github-actions[bot]
parent fc79419129
commit bd39618298
3 changed files with 11 additions and 5 deletions

View File

@@ -921,6 +921,13 @@ with lib.maintainers;
shortName = "NGI";
};
nixos-rebuild = {
members = [ thiagokokada ];
scope = "Maintain nixos-rebuild(-ng).";
shortName = "nixos-rebuild";
enableFeatureFreezePing = true;
};
node = {
members = [ winter ];
scope = "Maintain Node.js runtimes and build tooling.";

View File

@@ -132,7 +132,8 @@ python3Packages.buildPythonApplication rec {
description = "Rebuild your NixOS configuration and switch to it, on local hosts and remote";
homepage = "https://github.com/NixOS/nixpkgs/tree/master/pkgs/by-name/ni/nixos-rebuild-ng";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.thiagokokada ];
maintainers = [ ];
teams = [ lib.teams.nixos-rebuild ];
mainProgram = executable;
};
}

View File

@@ -81,10 +81,8 @@ substitute {
description = "Rebuild your NixOS configuration and switch to it, on local hosts and remote";
homepage = "https://github.com/NixOS/nixpkgs/tree/master/pkgs/os-specific/linux/nixos-rebuild";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
Profpatsch
thiagokokada
];
maintainers = [ lib.maintainers.Profpatsch ];
teams = [ lib.teams.nixos-rebuild ];
mainProgram = "nixos-rebuild";
};
}