universeair: Disable native-comp (broken in macOS 15.4+ nixpkgs issue#395169)

This commit is contained in:
2025-05-28 16:55:51 -04:00
parent 7bd64b8391
commit 7d7838e43c
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -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
'';
};