From 930f82eaf3bc9263729a9bf874343ec6b4f94d3c Mon Sep 17 00:00:00 2001 From: ilmari-lauhakangas Date: Sat, 31 Aug 2024 19:05:42 +0300 Subject: [PATCH] nixos/soju: use message-store instead of deprecated log in config From message-store section in https://soju.im/doc/soju.1.html : "(log is a deprecated alias for this directive.)" --- nixos/modules/services/networking/soju.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/soju.nix b/nixos/modules/services/networking/soju.nix index 0f4969b930e4..808c708163b2 100644 --- a/nixos/modules/services/networking/soju.nix +++ b/nixos/modules/services/networking/soju.nix @@ -12,7 +12,7 @@ let tlsCfg = optionalString (cfg.tlsCertificate != null) "tls ${cfg.tlsCertificate} ${cfg.tlsCertificateKey}"; logCfg = optionalString cfg.enableMessageLogging - "log fs ${stateDir}/logs"; + "message-store fs ${stateDir}/logs"; configFile = pkgs.writeText "soju.conf" '' ${listenCfg}