Files
dotfiles/nixos/mirai/services/default.nix
2025-02-27 22:26:51 +05:30

41 lines
954 B
Nix

{...}: {
imports = [
./atuin.nix
./authelia.nix
./jellyfin.nix
./llama.nix
./minecraft.nix
./tailscale.nix
# ./polaris.nix
# ./seafile.nix
# ./syncthing.nix
# ./vscode.nix
# ./nextcloud.nix
# ./navidrome.nix
# ./ldap.nix
# ./home-assistant.nix
# ./llama.nix
# ./nextcloud.nix
];
services = {
nix-serve = {
enable = true;
};
fail2ban = {
enable = true;
bantime = "24h"; # Ban IPs for one day on the first ban
bantime-increment = {
enable = true; # Enable increment of bantime after each violation
# formula = "ban.Time * math.exp(float(ban.Count+1)*banFactor)/math.exp(1*banFactor)";
multipliers = "1 2 4 8 16 32 64";
maxtime = "168h"; # Do not ban for more than 1 week
overalljails = true; # Calculate the bantime based on all the violations
};
};
caddy = {
enable = true;
};
};
}