nixos-configs/devices/cluster/modules/pacemaker/default.nix

21 lines
270 B
Nix
Raw Normal View History

{...}: {
2024-01-22 22:47:31 -05:00
imports = [
./options.nix
../corosync.nix
../caddy.nix
];
# TODO: update script
services.pacemaker = {
enable = true;
2024-01-22 22:47:31 -05:00
resources = {
"caddy" = {
enable = true;
virtualIp = "10.0.0.130";
};
};
};
}