Skip to content

Commit

Permalink
feat(modules/nixos): add clamav
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicegginton committed Jan 14, 2025
1 parent d31b988 commit b9f93ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/nixos/security.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
_:
{ pkgs, ... }:

{
config = {
security.sudo.enable = true;
security.polkit.enable = true;
security.rtkit.enable = true;
services.clamav.scanner.enable = true;
services.clamav.updater.enable = true;
services.clamav.daemon.enable = true;
environment.systemPackages = with pkgs; [ clamav ];
};
}

0 comments on commit b9f93ca

Please sign in to comment.