From 034dbb40939c4c491d0a2149ac9ebedceae18738 Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 17 Jan 2023 13:40:23 -0800 Subject: [PATCH] lib is a file, not a dir --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7ab0c8a..97edf39 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,7 @@ entities = let helper-lib = fudo-lib.lib { pkgs = nixpkgs; }; in import ./entities.nix { inherit helper-lib; }; - lib = import ./lib { + lib = import ./lib.nix { inherit (nixpkgs) lib; inherit (self) entities; };