1
1
mirror of https://github.com/nix-community/dream2nix.git synced 2024-12-28 08:59:04 +03:00

Merge pull request from DieracDelta/patch-1

Add darwin to architecture list
This commit is contained in:
DavHau 2022-01-30 23:08:07 +07:00 committed by GitHub
commit a23bc67726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@
lib = nixpkgs.lib;
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f: lib.genAttrs supportedSystems (system:
f system (import nixpkgs { inherit system; overlays = [ self.overlay ]; })