Skip to content

Commit c2bbc8c

Browse files
authored
docs/nix-path.md: fix input parameter in example
otherwise this example doesn't work as-is
1 parent daf19ef commit c2bbc8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/howtos/nix-path.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ configuration instead:
2323
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
2424
# ... other inputs
2525
26-
outputs = { nixpkgs, ... }:
26+
outputs = inputs@{ nixpkgs, ... }:
2727
{
2828
nixosConfigurations.yoursystem = nixpkgs.lib.nixosSystem {
2929
system = "x86_64-linux"; # adapt to your actual system

0 commit comments

Comments
 (0)