Gitiles
Code Review
Sign In
git.clicks.codes
/
Infra
/
NixFiles
/
a3f5664084389b41f9048afbf3f69dccfdfa4a31
/
.
/
modules
/
clamav.nix
blob: acaa76d9102ca651143ec5c5b157379e1b4f7ea5 [
file
] [
log
] [
blame
]
{
pkgs
,
...
}:
{
services
.
clamav
=
{
updater
.
enable
=
true
;
daemon
=
{
enable
=
true
;
settings
.
TCPSocket
=
3310
;
};
};
environment
.
systemPackages
=
[
pkgs
.
clamav
];
}