WIP: router: add keepalived

This commit is contained in:
Yuri Tatishchev 2025-06-09 19:31:58 -07:00
parent 2bd88d7a93
commit b06982a443
Signed by: CaZzzer
SSH Key Fingerprint: SHA256:sqXB3fe0LMpfH+IeM/vlmxKdso52kssrIJBlwKXVe1U
2 changed files with 11 additions and 0 deletions

View File

@ -14,6 +14,7 @@ in
./kea.nix ./kea.nix
./glance.nix ./glance.nix
./services.nix ./services.nix
./keepalived.nix
]; ];
# Secrix for secrets management # Secrix for secrets management
secrix.hostPubKey = vars.pubkey; secrix.hostPubKey = vars.pubkey;

View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
let
vaks = import ./vaks.nix config;
in
{
services.keepalived = {
enable = true;
};
}