mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 05:12:34 +02:00
43ae447b34
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
13 lines
215 B
Nix
13 lines
215 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
clamav
|
|
];
|
|
|
|
services.clamav = {
|
|
daemon.enable = true;
|
|
updater.enable = true;
|
|
scanner.enable = true;
|
|
fangfrisch.enable = true;
|
|
};
|
|
}
|