all repos — nixfiles @ 857876362dcbfc1736c482daff86942d780e6a6b

System and user configuration, managed by nix and home-manager

darwin: fix emacs crash on macOS 15.4 build emacs without native compilation support

Alan Pearce
commit

857876362dcbfc1736c482daff86942d780e6a6b

parent

c4d51ea56e3498374d27655f9e92707bcf1f9c72

1 file changed, 5 insertions(+), 1 deletion(-)

jump to
M user/settings/darwin.nixuser/settings/darwin.nix
@@ -9,7 +9,11 @@ maid
less ]; - programs.emacs.package = pkgs.personal.emacs-unlimited-select; + programs.emacs.package = pkgs.personal.emacs-unlimited-select.override { + emacs = pkgs.emacs.override { + withNativeCompilation = false; # https://github.com/NixOS/nixpkgs/issues/395170 + }; + }; home.file.".hushlogin".text = "";