1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-09 18:41:06 +01:00

treewide: meta.maintainers at top

Just make it consistent throughout codebase and easier to find
maintainers for a module.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-11-22 14:24:25 -06:00
parent d4a80f26bf
commit 0b44044694
38 changed files with 97 additions and 105 deletions

View file

@ -12,6 +12,8 @@ let
cfg = config.nix;
in
{
meta.maintainers = [ lib.maintainers.GaetanLepage ];
options = {
nix = {
buildMachines = mkOption {
@ -202,6 +204,4 @@ in
};
}
);
meta.maintainers = [ lib.maintainers.GaetanLepage ];
}

View file

@ -147,6 +147,8 @@ let
in
{
meta.maintainers = [ ];
options.nix = {
enable =
mkEnableOption ''
@ -359,6 +361,4 @@ in
xdg.configFile."nix/nix.conf".source = nixConf;
})
]);
meta.maintainers = [ ];
}

View file

@ -8,6 +8,8 @@ let
cfg = config.xdg.terminal-exec;
in
{
meta.maintainers = with lib.maintainers; [ nukdokplex ];
options = {
xdg.terminal-exec = {
enable = lib.mkEnableOption ''
@ -50,6 +52,4 @@ in
) { text = lib.concatLines terminals; }
) cfg.settings;
};
meta.maintainers = with lib.maintainers; [ nukdokplex ];
}