From 7d7838e43c8bcc8b058274daab200dbcd6142943 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 28 May 2025 16:55:51 -0400 Subject: [PATCH] universeair: Disable native-comp (broken in macOS 15.4+ nixpkgs issue#395169) --- machines/universeair/configuration.nix | 8 ++++++-- machines/universeair/skhd.nix | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/machines/universeair/configuration.nix b/machines/universeair/configuration.nix index 459adef..92acab4 100644 --- a/machines/universeair/configuration.nix +++ b/machines/universeair/configuration.nix @@ -55,7 +55,9 @@ in services.emacs = { # Emacsclient behaving weirdly # enable = true; - package = pkgs.me-emacs; + package = pkgs.me-emacs.override { + withNativeCompilation = false; + }; }; environment.variables = { @@ -140,7 +142,9 @@ in ]; environment.systemPackages = (with pkgs; [ - me-emacs + (me-emacs.override { + withNativeCompilation = false; + }) svgbob (aspellWithDicts (p: with p;[ en diff --git a/machines/universeair/skhd.nix b/machines/universeair/skhd.nix index a5b508f..a6ee379 100644 --- a/machines/universeair/skhd.nix +++ b/machines/universeair/skhd.nix @@ -2,7 +2,7 @@ services.skhd = { enable = true; skhdConfig = '' - cmd + shift - e : open '${pkgs.me-emacs}/Applications/Emacs.app' + cmd + shift - e : open '${(pkgs.me-emacs.override {withNativeCompilation = false;})}/Applications/Emacs.app' cmd + shift + ctrl - e : kitty -d ~ -1 ''; };