Add clamav module
This commit is contained in:
parent
b13c5aecaa
commit
b9e9b29cb3
|
@ -6,6 +6,7 @@
|
||||||
./x270.nix
|
./x270.nix
|
||||||
./scanner.nix
|
./scanner.nix
|
||||||
./printer.nix
|
./printer.nix
|
||||||
|
# ./clamav.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
9
hosts/clamav.nix
Normal file
9
hosts/clamav.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.clamav
|
||||||
|
];
|
||||||
|
services.clamav.daemon.enable = true;
|
||||||
|
|
||||||
|
services.clamav.updater.enable = true;
|
||||||
|
}
|
Loading…
Reference in a new issue