[READ-ONLY] Mirror of https://github.com/maybeanerd/nixos. the nixos config for my PC, laptops, and whatever else I can find
1

Configure Feed

Select the types of activity you want to include in your feed.

feat: add clamav (#112)

authored by

Sebastian Di Luzio and committed by
GitHub
(Apr 24, 2026, 7:09 PM UTC) 910be6f3 8abaa33d

+8 -2
-1
flake.nix
··· 163 163 isWorkDevice = true; 164 164 gitConfig = { 165 165 email = "sebastian.diluzio@liqid.de"; 166 - sign = false; 167 166 }; 168 167 }; 169 168 };
+2 -1
home-manager/development/shared.nix
··· 15 15 tldr 16 16 sops 17 17 age-plugin-yubikey # to manage secrets with sops using the YubiKey 18 + clamav # antivirus 18 19 ]; 19 20 20 21 nixosPackages = ··· 208 209 init.defaultBranch = "main"; 209 210 pull.rebase = true; 210 211 signing.key = gpgKeyID; 211 - commit.gpgsign = gitConfig.sign or true; 212 + commit.gpgsign = gitConfig.sign or false; 212 213 }; 213 214 }; 214 215
+6
nixos/default.nix
··· 117 117 118 118 # Enalbe docker daemon 119 119 virtualisation.docker.enable = true; 120 + 121 + # Antivirus 122 + services.clamav = { 123 + daemon.enable = true; 124 + updater.enable = true; 125 + }; 120 126 }