From 66b9657a93d9bc0d8d578ee92d5a0df23af92df8 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Tue, 2 Dec 2025 00:03:03 +0100 Subject: [PATCH] doc: update snippets --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2d4518..5f63368 100644 --- a/README.md +++ b/README.md @@ -98,10 +98,10 @@ To get started using SelfHostBlocks, the following snippet is enough: outputs = { selfhostblocks, ... }: let system = "x86_64-linux"; - shb = selfhostblocks.lib.${system}; + nixpkgs' = selfhostblocks.lib.${system}.patchedNixpkgs; in nixosConfigurations = { - myserver = shb.pkgs.nixosSystem { + myserver = nixpkgs'.nixosSystem { inherit system; modules = [ selfhostblocks.nixosModules.default @@ -125,7 +125,6 @@ and also how to handle secrets management with [SOPS][]. Then, to actually configure services, you can choose which one interests you in the [services section](https://shb.skarabox.com/services.html) of the manual. -Not all services have a corresponding manual page yet. The [recipes section](https://shb.skarabox.com/recipes.html) of the manual shows some other common use cases.