mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 14:20:23 +01:00
11 lines
232 B
Nix
11 lines
232 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/hardened.nix")
|
|
];
|
|
|
|
# disable coredump that could be exploited later
|
|
# and also slow down the system when something crash
|
|
systemd.coredump.enable = false;
|
|
}
|