Compare commits

..

No commits in common. "c6092ffb4aedacc23810571c421bb7d6b945ffd9" and "2a8dd740a3efa7bb2fc508502913b173b52947e0" have entirely different histories.

4 changed files with 1 additions and 34 deletions

View file

@ -38,7 +38,6 @@ in {
mods.desktop.wayland.enable = false;
mods.desktop.gaming.enable = true;
mods.boot.enable = true;
mods.clamav.enable = true;
mods.theme.enable = true;
mods.theme.scheme = "woodland";

View file

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

View file

@ -1,18 +0,0 @@
{
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

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