Merge pull request #94340 from 1000101/maintainer

nixos/modules: add myself as maintainer of several services
This commit is contained in:
Marek Mahut 2020-08-05 11:54:29 +02:00 committed by GitHub
commit 6cf131d54e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -269,4 +269,7 @@ in
users.groups = mapAttrs' (instanceName: cfg: (
nameValuePair "${cfg.group}" { })) eachBlockbook;
};
meta.maintainers = with maintainers; [ maintainers."1000101" ];
}

View File

@ -106,7 +106,9 @@ in
Restart = "always";
};
};
};
meta.maintainers = with maintainers; [ maintainers."1000101" ];
};
}

View File

@ -2,7 +2,7 @@
let
inherit (lib) mkEnableOption mkForce mkIf mkMerge mkOption optionalAttrs recursiveUpdate types;
inherit (lib) mkEnableOption mkForce mkIf mkMerge mkOption optionalAttrs recursiveUpdate types maintainers;
inherit (lib) concatMapStringsSep flatten mapAttrs mapAttrs' mapAttrsToList nameValuePair concatMapStringSep;
eachSite = config.services.dokuwiki;
@ -385,4 +385,7 @@ in
isSystemUser = true;
};
};
meta.maintainers = with maintainers; [ maintainers."1000101" ];
}