From 9135a2fd12ed2268c411b85cf2b0e9e188ffca2b Mon Sep 17 00:00:00 2001 From: Sk7Str1p3 Date: Wed, 24 Jun 2026 10:50:20 +0000 Subject: [PATCH] fix(flake/inputs): change merge function to `lib.recursiveUpdate` --- 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 ce4828c..2d9cee5 100644 --- a/flake/inputs/default.nix +++ b/flake/inputs/default.nix @@ -15,7 +15,7 @@ > Then accessing inputs in repl, remove {class}, so instead of calling e.g. `flake.inputs.core.nixpkgs`, > you call `flake.inputs.nixpkgs`. */ -lib.foldl' (acc: value: acc // value) { } ( +lib.foldl' (acc: value: lib.recursiveUpdate acc value) { } ( map (file: import ./${file}) ( builtins.filter (name: name != "default.nix") (builtins.attrNames (builtins.readDir ./.)) )