diff options
author | seth <getchoo@tuta.io> | 2023-08-04 11:55:31 -0400 |
---|---|---|
committer | seth <getchoo@tuta.io> | 2023-08-06 15:52:32 -0400 |
commit | eeb5fdbc9f7848717a167b251ddae521f19a056e (patch) | |
tree | 427bba5ee8c1be81307c087e6a7c6cbcdfcf05a5 /nix/default.nix | |
parent | 75c7df46a7022a46d447bb96fbde619e5d65db05 (diff) | |
download | PrismLauncher-eeb5fdbc9f7848717a167b251ddae521f19a056e.tar.gz PrismLauncher-eeb5fdbc9f7848717a167b251ddae521f19a056e.tar.bz2 PrismLauncher-eeb5fdbc9f7848717a167b251ddae521f19a056e.zip |
feat(nix): add darwin support
Signed-off-by: seth <getchoo@tuta.io>
Diffstat (limited to 'nix/default.nix')
-rw-r--r-- | nix/default.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nix/default.nix b/nix/default.nix index 47172927..71c95c2c 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -25,8 +25,7 @@ systems = [ "x86_64-linux" "aarch64-linux" - # Disabled due to our packages not supporting darwin yet. - # "x86_64-darwin" - # "aarch64-darwin" + "x86_64-darwin" + "aarch64-darwin" ]; } |