universeair: Disable native-comp (broken in macOS 15.4+ nixpkgs issue#395169)
This commit is contained in:
@@ -55,7 +55,9 @@ in
|
|||||||
services.emacs = {
|
services.emacs = {
|
||||||
# Emacsclient behaving weirdly
|
# Emacsclient behaving weirdly
|
||||||
# enable = true;
|
# enable = true;
|
||||||
package = pkgs.me-emacs;
|
package = pkgs.me-emacs.override {
|
||||||
|
withNativeCompilation = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
@@ -140,7 +142,9 @@ in
|
|||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = (with pkgs; [
|
environment.systemPackages = (with pkgs; [
|
||||||
me-emacs
|
(me-emacs.override {
|
||||||
|
withNativeCompilation = false;
|
||||||
|
})
|
||||||
svgbob
|
svgbob
|
||||||
(aspellWithDicts (p: with p;[
|
(aspellWithDicts (p: with p;[
|
||||||
en
|
en
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
services.skhd = {
|
services.skhd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
skhdConfig = ''
|
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
|
cmd + shift + ctrl - e : kitty -d ~ -1
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user