1
Fork 0

Add some security enhancements at the cost of perf

Currently experimenting with whether or not it's worth running ClamAV.
Realistically speaking, I probably don't need it, all my executables are
sourced from nixpkgs and should be malware free. I don't even know if it
scans the store or anything. I'm just going to leave it here and forget
about it and maybe sometime in the future it saves me from something idk.
This commit is contained in:
caem 2024-07-09 14:01:37 +02:00
parent d5adae15f6
commit f217128dcc
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -0,0 +1,15 @@
{ ... }:
{
services.clamav = {
scanner.enable = true;
daemon.enable = true;
fangfrisch.enable = true;
updater.enable = true;
};
security.apparmor = {
enable = true;
};
}