mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
formatting
This commit is contained in:
parent
2e87afc0f8
commit
32564f4fdc
2 changed files with 1 additions and 3 deletions
|
@ -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 (
|
||||||
|
|
|
@ -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 ++ [
|
||||||
|
|
Loading…
Reference in a new issue