mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
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.)"
This commit is contained in:
parent
487972dea2
commit
930f82eaf3
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ let
|
||||||
tlsCfg = optionalString (cfg.tlsCertificate != null)
|
tlsCfg = optionalString (cfg.tlsCertificate != null)
|
||||||
"tls ${cfg.tlsCertificate} ${cfg.tlsCertificateKey}";
|
"tls ${cfg.tlsCertificate} ${cfg.tlsCertificateKey}";
|
||||||
logCfg = optionalString cfg.enableMessageLogging
|
logCfg = optionalString cfg.enableMessageLogging
|
||||||
"log fs ${stateDir}/logs";
|
"message-store fs ${stateDir}/logs";
|
||||||
|
|
||||||
configFile = pkgs.writeText "soju.conf" ''
|
configFile = pkgs.writeText "soju.conf" ''
|
||||||
${listenCfg}
|
${listenCfg}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue