From 4065fd623fc3b087d8aa47a9c652f192482692a7 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 10 Jan 2024 15:42:00 +0300 Subject: [PATCH] Fix calling ulib with too many args --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c2bf94e..a69d787 100644 --- a/flake.nix +++ b/flake.nix @@ -94,7 +94,7 @@ hostDefault = import ./hosts/${host} { config = {}; keys = {}; - ulib = (import ./lib lib null) // { + ulib = (import ./lib null) // { merge = lib.recursiveUpdate; }; };