Skip to content

Commit

Permalink
Disable closure size reduction on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Dec 24, 2024
1 parent 7a7a41a commit e4d7a29
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nix/modules/flake-parts/extra/small-closure.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
let
allowedSystems = [
"x86_64-linux"
"aarch64-darwin"

# Disabling on macOS due to upstream bug:
# - https://github.com/NixOS/nixpkgs/issues/318013
# - https://github.com/NixOS/nixpkgs/pull/304352
# - Related: https://github.com/NixOS/nix/pull/10877
# "aarch64-darwin"
];
in
{
Expand Down

0 comments on commit e4d7a29

Please sign in to comment.