From 75b42c01777ad88a7f7953f68e0b54b26c48b83a Mon Sep 17 00:00:00 2001 From: Sk7Str1p3 Date: Wed, 24 Jun 2026 11:59:52 +0000 Subject: [PATCH] docs(flake/inputs): fix generation `{lib,...}` as first line was breaking generator logic --- flake/inputs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake/inputs/default.nix b/flake/inputs/default.nix index 2d9cee5..1299742 100644 --- a/flake/inputs/default.nix +++ b/flake/inputs/default.nix @@ -1,4 +1,3 @@ -{ lib, ... }: # Flake inputs /** @@ -15,6 +14,7 @@ > Then accessing inputs in repl, remove {class}, so instead of calling e.g. `flake.inputs.core.nixpkgs`, > you call `flake.inputs.nixpkgs`. */ +{ lib, ... }: lib.foldl' (acc: value: lib.recursiveUpdate acc value) { } ( map (file: import ./${file}) ( builtins.filter (name: name != "default.nix") (builtins.attrNames (builtins.readDir ./.))