fail2ban: setup service
This commit is contained in:
parent
076f40b031
commit
25f45ec6f6
|
@ -80,6 +80,10 @@ in
|
||||||
repo = secrets.borg-backup-repo;
|
repo = secrets.borg-backup-repo;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fail2ban = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
gitea = {
|
gitea = {
|
||||||
enable = true;
|
enable = true;
|
||||||
privatePort = 8082;
|
privatePort = 8082;
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./bitwarden_rs.nix
|
./bitwarden_rs.nix
|
||||||
./borg-backup.nix
|
./borg-backup.nix
|
||||||
|
./fail2ban.nix
|
||||||
./gitea.nix
|
./gitea.nix
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./matrix.nix
|
./matrix.nix
|
||||||
|
|
14
services/fail2ban.nix
Normal file
14
services/fail2ban.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.my.services.fail2ban;
|
||||||
|
in {
|
||||||
|
options.my.services.fail2ban = {
|
||||||
|
enable = mkEnableOption "Enable fail2ban";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.fail2ban.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue