From c8c8a77473931c536848928c22af458e35f28bbb Mon Sep 17 00:00:00 2001 From: Christian Harke Date: Tue, 26 Sep 2023 23:26:18 +0200 Subject: [PATCH] Enable clamav --- nixos/base/system/antivirus/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nixos/base/system/antivirus/default.nix 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; + }; +}