From fe98fd5e599b76cf9114c0c08c1da3f7cc9dee13 Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Fri, 29 May 2026 00:15:50 +0300 Subject: [PATCH] feat(ada): coredump init Signed-off-by: s0me1newithhand7s --- ada/systemd/coredump.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ada/systemd/coredump.nix diff --git a/ada/systemd/coredump.nix b/ada/systemd/coredump.nix new file mode 100644 index 0000000..636d731 --- /dev/null +++ b/ada/systemd/coredump.nix @@ -0,0 +1,7 @@ +_: { + systemd = { + coredump = { + enable = true; + }; + }; +}