From c7eb52821cc82bb1ab9372949c3ee54e621d3ae0 Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Wed, 16 Jul 2025 21:40:24 +0200 Subject: [PATCH] made keepalived optional (I may not want to share the ip with all nodes) --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 8d837a7..c14f7f0 100644 --- a/configuration.nix +++ b/configuration.nix @@ -30,7 +30,7 @@ ./docker-device-mapper.nix ] ++ lib.optionals (config.vars.host_type == "nas") [ ./service-zrepl.nix ] - ++ lib.optionals (config.vars.host_type == "worker") [ ./nfs-mount.nix ]; + ++ lib.optionals (config.vars.host_type == "worker") [ ./nfs-mount.nix ./keepalived.nix ]; # Use the systemd-boot EFI boot loader and enable that sweet zfs stuff. boot.loader.systemd-boot.enable = true;