diff --git a/flake.nix b/flake.nix index f75d183..e9cc933 100644 --- a/flake.nix +++ b/flake.nix @@ -67,10 +67,8 @@ } @ inputs: let inherit (self) outputs; - inherit ((import ./lib/default.nix) { lib = nixpkgs.lib; }) - recurseDir - hasFiles - hasDirectories; + helpers = (import ./lib/helpers.nix) { lib = nixpkgs.lib; }; + inherit (helpers) recurseDir hasFiles hasDirectories; forAllSystems = nixpkgs.lib.genAttrs [ "aarch64-linux" "i686-linux" diff --git a/lib/default.nix b/lib/helpers.nix similarity index 100% rename from lib/default.nix rename to lib/helpers.nix