From 2b3c0be4fd15c9bc54f2c1cfd6ed11de2b2e7069 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 3 May 2023 13:39:54 +0300 Subject: [PATCH] Fix: Fix flake.nix undefined variable --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 673cf26..9a11ed1 100644 --- a/flake.nix +++ b/flake.nix @@ -67,7 +67,7 @@ }; in # Basically imports all machines in ./machines/. - builtins.foldl' lib.recursiveUpdate {} (builtins.map importConfiguration [ + builtins.foldl' nixpkgs.lib.recursiveUpdate {} (builtins.map importConfiguration [ ./machines/asus # HACK: Use a function to list the directory. ]); }