From 6fc6b311ed6d4308411e36fc2d9921e0597c6bbd Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 21 Jul 2025 15:38:05 +0000 Subject: [PATCH] Disable our version of cloud-init for nixos-anywhere It has its own specialized cloud-init. Eventually I should harmonize the two, but not today. --- nixos-anywhere/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-anywhere/configuration.nix b/nixos-anywhere/configuration.nix index 0c3cdc0..f293bfc 100644 --- a/nixos-anywhere/configuration.nix +++ b/nixos-anywhere/configuration.nix @@ -18,7 +18,7 @@ }; myModules = { - cloud-init.enable = true; + cloud-init.enable = false; do-agent.enable = true; }; }