linux: create maintainer team

Now there are a few more folks who should get pinged on kernel changes:

$ nix-instantiate -E 'with import ./. {}; (map (x: x.github) linux.meta.maintainers)' --eval --strict
[ "TredwellGit" "mweinelt" "ma27" "nequissimus" "alyssais" "thoughtpolice" ]

Refs #140281

+11 -1
+10
maintainers/team-list.nix
··· 164 scope = "Maintain Kodi and related packages."; 165 }; 166 167 mate = { 168 members = [ 169 j03
··· 164 scope = "Maintain Kodi and related packages."; 165 }; 166 167 + linux-kernel = { 168 + members = [ 169 + TredwellGit 170 + ma27 171 + nequissimus 172 + qyliss 173 + ]; 174 + scope = "Maintain the Linux kernel."; 175 + }; 176 + 177 mate = { 178 members = [ 179 j03
+1 -1
pkgs/os-specific/linux/kernel/manual-config.nix
··· 293 license = lib.licenses.gpl2Only; 294 homepage = "https://www.kernel.org/"; 295 repositories.git = "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git"; 296 - maintainers = [ 297 maintainers.thoughtpolice 298 ]; 299 platforms = platforms.linux;
··· 293 license = lib.licenses.gpl2Only; 294 homepage = "https://www.kernel.org/"; 295 repositories.git = "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git"; 296 + maintainers = lib.teams.linux-kernel.members ++ [ 297 maintainers.thoughtpolice 298 ]; 299 platforms = platforms.linux;