nixos: services: komga: fix deprecated option

This commit is contained in:
Bruno BELANYI 2025-01-30 13:06:49 +01:00
parent f08787625b
commit 1540483955

View file

@ -18,11 +18,11 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.komga = { services.komga = {
enable = true; enable = true;
inherit (cfg) port;
group = "media"; group = "media";
settings = { settings = {
server.port = cfg.port;
logging.level.org.gotson.komga = "DEBUG"; # Needed for fail2ban logging.level.org.gotson.komga = "DEBUG"; # Needed for fail2ban
}; };
}; };