teams/cachix: drop

This commit is contained in:
Wolfgang Walther
2026-01-11 17:12:23 +01:00
parent 5ec7af3953
commit 16c2a2499e
5 changed files with 17 additions and 14 deletions
-10
View File
@@ -154,16 +154,6 @@ with lib.maintainers;
shortName = "c3d2";
};
cachix = {
# Verify additions to this team with at least one existing member of the team.
members = [
domenkozar
sandydoo
];
scope = "Group registration for packages maintained by Cachix.";
shortName = "Cachix employees";
};
categorization = {
github = "categorization";
};
@@ -8,7 +8,10 @@ let
cfg = config.services.cachix-agent;
in
{
meta.maintainers = lib.teams.cachix.members;
meta.maintainers = with lib.maintainers; [
domenkozar
sandydoo
];
options.services.cachix-agent = {
enable = lib.mkEnableOption "Cachix Deploy Agent: <https://docs.cachix.org/deploy/>";
@@ -9,7 +9,11 @@ let
in
{
meta = {
maintainers = lib.teams.cachix.members ++ [ lib.maintainers.jfroche ];
maintainers = with lib.maintainers; [
domenkozar
jfroche
sandydoo
];
};
options.services.cachix-watch-store = {
+4 -1
View File
@@ -128,6 +128,9 @@ rustPlatform.buildRustPackage {
homepage = "https://github.com/cachix/devenv";
license = lib.licenses.asl20;
mainProgram = "devenv";
teams = [ lib.teams.cachix ];
maintainers = with lib.maintainers; [
domenkozar
sandydoo
];
};
}
+4 -1
View File
@@ -27,7 +27,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
description = "Declarative secrets, every environment, any provider";
homepage = "https://secretspec.dev";
license = with lib.licenses; [ asl20 ];
teams = [ lib.teams.cachix ];
maintainers = with lib.maintainers; [
domenkozar
sandydoo
];
mainProgram = "secretspec";
};
})