From 3d64364853ccaf24c479e90173a2d96d3044fde9 Mon Sep 17 00:00:00 2001 From: joshp123 Date: Sun, 15 Feb 2026 15:32:09 -0800 Subject: [PATCH] Enable amazon-ssm-agent on hosts Needed for SSM-based fleet deploy workflow. --- nix/hosts/clawdinator-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/hosts/clawdinator-common.nix b/nix/hosts/clawdinator-common.nix index a382a3d..a828cf1 100644 --- a/nix/hosts/clawdinator-common.nix +++ b/nix/hosts/clawdinator-common.nix @@ -86,6 +86,9 @@ in group = "clawdinator"; }; + # Required for CI-driven deploys via AWS Systems Manager. + services.amazon-ssm-agent.enable = true; + services.clawdinator = { enable = true; instanceName = lib.toUpper hostName;