diff --git a/hosts/Disco.nix b/hosts/Disco.nix index 3e2d7e1..790cc05 100644 --- a/hosts/Disco.nix +++ b/hosts/Disco.nix @@ -6,6 +6,7 @@ ./x270.nix ./scanner.nix ./printer.nix + # ./clamav.nix ]; boot.loader.systemd-boot.enable = true; diff --git a/hosts/clamav.nix b/hosts/clamav.nix new file mode 100644 index 0000000..a6c9c79 --- /dev/null +++ b/hosts/clamav.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: +{ + environment.systemPackages = [ + pkgs.clamav + ]; + services.clamav.daemon.enable = true; + + services.clamav.updater.enable = true; +}