mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 03:12:09 +02:00
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;
|
|
};
|
|
}
|