commit 07f3aea3938179f2cbc5aaf5414bf0efdf424ec1 parent decae1544a39f1f0cf8d0cc4b36b8b7f1d37be5e Author: mtmn <miro@haravara.org> Date: Fri, 10 Apr 2026 00:52:30 +0200 chore: linter, fmt Diffstat:
| M | modules/services/harmonia.nix | | | 2 | +- |
| M | modules/services/monitoring.nix | | | 8 | +++++--- |
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/modules/services/harmonia.nix b/modules/services/harmonia.nix @@ -62,7 +62,7 @@ in { bind = "127.0.0.1:${toString cfg.port}"; workers = 4; max_connection_rate = 256; - priority = cfg.priority; + inherit (cfg) priority; enable_compression = cfg.enableCompression; }; }; diff --git a/modules/services/monitoring.nix b/modules/services/monitoring.nix @@ -296,9 +296,11 @@ in { loki = { enable = true; configuration = { - server.http_listen_address = "127.0.0.1"; - server.http_listen_port = 3100; - server.grpc_listen_address = "127.0.0.1"; + server = { + http_listen_address = "127.0.0.1"; + http_listen_port = 3100; + grpc_listen_address = "127.0.0.1"; + }; auth_enabled = false; common = {