From 823d65ead9f57254edc6e7ee2d1765d06c9ec202 Mon Sep 17 00:00:00 2001 From: k3t Date: Fri, 13 Mar 2026 22:47:04 -0600 Subject: [PATCH] disable core dumps --- modules/common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/common.nix b/modules/common.nix index f9d2b4e..d24f929 100755 --- a/modules/common.nix +++ b/modules/common.nix @@ -49,6 +49,10 @@ wget2 python314 ]; + + # disable core dumps + systemd.coredump.enable = false; + # zram swap zramSwap.enable = true; zramSwap.memoryPercent = 80;