feat(comin): set up 'comin' for 'hecuba' host GitOps

This commit is contained in:
2026-05-31 19:33:07 +02:00
parent 2925bab847
commit caedfc5f80
3 changed files with 112 additions and 22 deletions

View File

@@ -11,6 +11,7 @@
imports = [
inputs.disko.nixosModules.disko
./hard.nix
inputs.comin.nixosModules.comin
./host.nix
../../modules
];
@@ -62,8 +63,20 @@
kitty.terminfo
];
services.fail2ban = {
enable = true;
maxretry = 5;
services = {
comin = {
enable = true;
remotes = [
{
name = "origin";
url = "https://git.hektormisplon.xyz/hektor/nix";
branches.main.name = "main";
}
];
};
fail2ban = {
enable = true;
maxretry = 5;
};
};
}