Compare commits

...

1 Commits

Author SHA1 Message Date
b06982a443
WIP: router: add keepalived 2025-06-09 19:31:58 -07:00
2 changed files with 11 additions and 0 deletions

View File

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

View File

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