manga subcategories

This commit is contained in:
2024-11-06 01:25:25 -06:00
parent 5735ea7c7a
commit 1dd7932a44
2 changed files with 47 additions and 8 deletions

View File

@@ -172,41 +172,77 @@
},
"readcomiconline": {
"chapter-reverse": true,
"directory": ["Comics", "{comic}", "{comic} #{issue}"],
"directory": ["comics", "{comic}", "{comic} #{issue}"],
"quality": "hq",
"captcha": "wait",
"postprocessors": ["cbz"]
},
"kissmanga": {
"chapter-reverse": true,
"directory": ["Manga", "{manga}", "{manga} Ch.{chapter}{chapter_minor}"],
"directory": [
"manga",
"{subcategory}",
"{manga}",
"{manga} Ch.{chapter}{chapter_minor}"
],
"captcha": "wait",
"postprocessors": ["cbz"]
},
"mangahere": {
"chapter-reverse": true,
"directory": ["Manga", "{manga}", "{manga} Ch.{chapter}{chapter_minor}"],
"directory": [
"manga",
"{subcategory}",
"{manga}",
"{manga} Ch.{chapter}{chapter_minor}"
],
"postprocessors": ["cbz"]
},
"mangadex": {
"chapter-reverse": true,
"chapter-filter": "lang == 'en'",
"directory": ["Manga", "{manga}", "{manga} Ch.{chapter}{chapter_minor}"],
"directory": [
"manga",
"{subcategory}",
"{manga}",
"{manga} Ch.{chapter}{chapter_minor}"
],
"postprocessors": ["cbz"]
},
"manganelo": {
"chapter-reverse": true,
"chapter-filter": "lang == 'en'",
"directory": [
"manga",
"{subcategory}",
"{manga}",
"{manga} Ch.{chapter}{chapter_minor}"
],
"postprocessors": ["cbz"]
},
"mangareader": {
"chapter-reverse": true,
"directory": ["Manga", "{manga}", "{manga} Ch.{chapter}{chapter_minor}"],
"directory": [
"manga",
"{subcategory}",
"{manga}",
"{manga} Ch.{chapter}{chapter_minor}"
],
"postprocessors": ["cbz"]
},
"mangapanda": {
"chapter-reverse": true,
"directory": ["Manga", "{manga}", "{manga} Ch.{chapter}{chapter_minor}"],
"directory": [
"manga",
"{subcategory}",
"{manga}",
"{manga} Ch.{chapter}{chapter_minor}"
],
"postprocessors": ["cbz"]
},
"webtoons": {
"chapter-reverse": true,
"directory": ["Webtoons", "{comic}", "{comic} #{episode}"],
"directory": ["webtoons", "{comic}", "{comic} #{episode}"],
"postprocessors": ["cbz"]
}
},

View File

@@ -14,7 +14,10 @@ in
users.users.kavita = lib.mkIf cfg.enable {
isSystemUser = true;
group = "kavita";
extraGroups = [ "piracy" ];
extraGroups = [
"users"
"piracy"
];
};
services = {
kavita = lib.mkIf cfg.enable {