formatting

This commit is contained in:
Daylin Morgan 2024-08-14 10:25:49 -05:00
parent 2e87afc0f8
commit 32564f4fdc
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 1 additions and 3 deletions

View file

@ -10,6 +10,7 @@ let
#supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; #supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
supportedSystems = [ "x86_64-linux" ]; supportedSystems = [ "x86_64-linux" ];
forAllSystems = f: genAttrs supportedSystems (system: f (import nixpkgs { inherit system; })); forAllSystems = f: genAttrs supportedSystems (system: f (import nixpkgs { inherit system; }));
inheritFlakePkgs = inheritFlakePkgs =
pkgs: flakes: pkgs: flakes:
listToAttrs ( listToAttrs (

View file

@ -17,9 +17,6 @@ let
|> attrNames |> attrNames
|> filter (f: f != "default.nix") |> filter (f: f != "default.nix")
|> map (f: import (./. + "/${f}") { inherit inputs; }); |> map (f: import (./. + "/${f}") { inherit inputs; });
# map
# (f: (import (./. + "/${f}") { inherit inputs; }))
# (filter (f: f != "default.nix") (attrNames (readDir ./.)));
in in
{ {
nixpkgs.overlays = overlays ++ [ nixpkgs.overlays = overlays ++ [