diff --git a/lib/default.nix b/lib/default.nix index 5d8460e..a688e84 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -10,6 +10,7 @@ let #supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; supportedSystems = [ "x86_64-linux" ]; forAllSystems = f: genAttrs supportedSystems (system: f (import nixpkgs { inherit system; })); + inheritFlakePkgs = pkgs: flakes: listToAttrs ( diff --git a/overlays/default.nix b/overlays/default.nix index 9934315..7fce1d6 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -17,9 +17,6 @@ let |> attrNames |> filter (f: f != "default.nix") |> map (f: import (./. + "/${f}") { inherit inputs; }); - # map - # (f: (import (./. + "/${f}") { inherit inputs; })) - # (filter (f: f != "default.nix") (attrNames (readDir ./.))); in { nixpkgs.overlays = overlays ++ [