Merge branch 'main' of codeberg.org:muon/home

This commit is contained in:
muon 2025-11-13 09:49:04 +00:00
commit 62f7f7c3ed
6 changed files with 53 additions and 5 deletions

View file

@ -1,4 +1,8 @@
{ pkgs, lib, ... }: {
{
pkgs,
lib,
...
}: {
imports = [
./core
./system
@ -6,6 +10,7 @@
./theme
./server
./sops
./security
./impermanence.nix

View file

@ -0,0 +1,18 @@
{
pkgs,
lib,
config,
...
}:
with lib; {
options.mods.clamav.enable = mkEnableOption "enables clamav";
config = mkIf config.mods.clamav.enable {
services.clamav = {
scanner.enable = true;
updater.enable = true;
fangfrisch.enable = true;
daemon.enable = true;
};
};
}

View file

@ -0,0 +1,9 @@
{
pkgs,
lib,
...
}: {
imports = [
./clamav.nix
];
}