From c2bbc8ccb58aa605b131090188887a5045f0b6bf Mon Sep 17 00:00:00 2001 From: Paul Haerle Date: Fri, 26 Jul 2024 14:57:29 +0200 Subject: [PATCH] docs/nix-path.md: fix input parameter in example otherwise this example doesn't work as-is --- docs/howtos/nix-path.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howtos/nix-path.md b/docs/howtos/nix-path.md index fd11a7c9..75afd3a1 100644 --- a/docs/howtos/nix-path.md +++ b/docs/howtos/nix-path.md @@ -23,7 +23,7 @@ configuration instead: inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # ... other inputs - outputs = { nixpkgs, ... }: + outputs = inputs@{ nixpkgs, ... }: { nixosConfigurations.yoursystem = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; # adapt to your actual system