From 070e51632af08bd11860e377f863a2c919d03fdf Mon Sep 17 00:00:00 2001 From: pinage404 Date: Sun, 1 Dec 2024 14:56:11 +0100 Subject: [PATCH] Fix home documentation : home-manager is a required input In order to avoid the following error ```txt error: In order to create home-manager configurations, you must include `home-manager` as a flake input. ``` --- src/content/docs/guides/lib/homes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content/docs/guides/lib/homes.md b/src/content/docs/guides/lib/homes.md index acba6a4..9c28e75 100644 --- a/src/content/docs/guides/lib/homes.md +++ b/src/content/docs/guides/lib/homes.md @@ -63,6 +63,11 @@ custom value in `specialArgs`. url = "github:snowfallorg/lib"; inputs.nixpkgs.follows = "nixpkgs"; }; + + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = inputs: