diff --git a/nixos/base/system/antivirus/default.nix b/nixos/base/system/antivirus/default.nix new file mode 100644 index 00000000..61fcc61e --- /dev/null +++ b/nixos/base/system/antivirus/default.nix @@ -0,0 +1,6 @@ +{ + services.clamav = { + daemon.enable = true; + updater.enable = true; + }; +}