mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 13:50:32 +01:00
12 lines
201 B
Nix
12 lines
201 B
Nix
|
{config, lib, pkgs, ...}:
|
||
|
{
|
||
|
services.clamav = {
|
||
|
updater.enable = true;
|
||
|
updater.settings = {
|
||
|
LogVerbose = true;
|
||
|
};
|
||
|
updater.interval = "hourly";
|
||
|
daemon.enable = true;
|
||
|
};
|
||
|
}
|