home-manager: drop bryango from maintainers

Also drop an unused input attribute to make the linter happy.

I no longer use home-manager from Nixpkgs. This is never officially
supported by home-manager upstream, and it is always recommended to use
either flakes, channels or any other input pinning tool.

See: https://nix-community.github.io/home-manager/
This commit is contained in:
Bryan Lai
2026-05-04 15:13:14 +08:00
parent 8c11f88bb9
commit 2d3715105b
+1 -2
View File
@@ -13,7 +13,6 @@
ncurses,
nixos-option,
stdenvNoCC,
unixtools,
unstableGitUpdater,
}:
@@ -94,7 +93,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
'';
license = lib.licenses.mit;
mainProgram = "home-manager";
maintainers = with lib.maintainers; [ bryango ];
maintainers = [ ];
platforms = lib.platforms.unix;
};
})