From 9d6dfbd3e96d93bdf126a840783445318f11c181 Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Mon, 31 Mar 2025 11:58:28 +0100 Subject: [PATCH] fix(docs): add the requirement to export clan.templates in flake outputs to migration guide --- docs/site/manual/migration-guide.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/site/manual/migration-guide.md b/docs/site/manual/migration-guide.md index 38be9a0e2..d14637d04 100644 --- a/docs/site/manual/migration-guide.md +++ b/docs/site/manual/migration-guide.md @@ -104,7 +104,12 @@ For the provide flake example, your flake should now look like this: in { nixosConfigurations = clan.nixosConfigurations; + inherit (clan) clanInternals; + + clan = { + inherit (clan) templates; + }; }; } ```