summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-01-09 18:02:37 +0100
committerlassulus <lassulus@lassul.us>2022-01-09 18:02:37 +0100
commitecfc5df838f5c2de6096ea25617d298bc29127f9 (patch)
tree8f5922437dea4cd0954194dd397e01f4faf79391 /krebs
parent3b8e4ecbb6ed69f592bbe0643d655e42d83f46c3 (diff)
news: disable history, raise identlen limit
Diffstat (limited to 'krebs')
-rw-r--r--krebs/2configs/news.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/krebs/2configs/news.nix b/krebs/2configs/news.nix
index a4384e00..9ea4cbf8 100644
--- a/krebs/2configs/news.nix
+++ b/krebs/2configs/news.nix
@@ -69,7 +69,11 @@
};
krebs.ergo.openFilesLimit = 16384;
- krebs.ergo.config.limits.nicklen = 100;
+ krebs.ergo.config = {
+ limits.nicklen = 100;
+ limits.identlen = 100;
+ history.enabled = false;
+ };
systemd.services.brockman.bindsTo = [ "ergo.service" ];
systemd.services.brockman.serviceConfig.LimitNOFILE = 16384;
systemd.services.brockman.environment.BROCKMAN_LOG_LEVEL = "DEBUG";