Compare commits

...

3 Commits

Author SHA1 Message Date
Robert Hensing
cd559d2b4c nixos/modules/nixpkgs: Add roberth to meta.maintainers
... and CODEOWNERS
2024-09-20 13:16:35 +02:00
Robert Hensing
400c4099a3 nixosModules.readOnlyPkgs: Add roberth to meta.maintainers
... and add to CODEOWNERS
2024-09-20 13:09:46 +02:00
Robert Hensing
8ad798fcf5 lib.nixos.evalModules (experimental): Add meta.nix
Ideally every module has a set of maintainers, so having to specify
meta.nix manually is just busywork. All configurations will need it.
2024-09-20 12:03:25 +02:00
4 changed files with 12 additions and 1 deletions

2
.github/CODEOWNERS vendored
View File

@@ -100,6 +100,8 @@ nixos/modules/installer/tools/nix-fallback-paths.nix @NixOS/nix-team @raitobeza
/nixos/lib/eval-config.nix @infinisil
/nixos/modules/system/activation/bootspec.nix @grahamc @cole-h @raitobezarius
/nixos/modules/system/activation/bootspec.cue @grahamc @cole-h @raitobezarius
/nixos/modules/misc/nixpkgs.nix @roberth
/nixos/modules/misc/nixpkgs/read-only.nix @roberth
# NixOS integration test driver
/nixos/lib/test-driver @tfc

View File

@@ -37,7 +37,10 @@ let
# In other words, only the public interface of nixos.evalModules
# is experimental.
lib.evalModules {
inherit prefix modules;
inherit prefix;
modules = [
../modules/misc/meta.nix
] ++ modules;
class = "nixos";
specialArgs = {
modulesPath = builtins.toString ../modules;

View File

@@ -397,4 +397,7 @@ in
# needs a full nixpkgs path to import nixpkgs
meta.buildDocsInSandbox = false;
meta.maintainers = [
lib.maintainers.roberth
];
}

View File

@@ -71,4 +71,7 @@ in
nixpkgs.hostPlatform = cfg.pkgs.stdenv.hostPlatform;
nixpkgs.buildPlatform = cfg.pkgs.stdenv.buildPlatform;
};
meta.maintainers = [
lib.maintainers.roberth
];
}