[NixOS] [Emacs] Use tree sitter/native compilation flags for emacs everywhere

This commit is contained in:
Ivan Malison 2023-08-15 15:37:14 -06:00
parent 410b0e98c1
commit 5b4698cde1
2 changed files with 6 additions and 4 deletions

View File

@ -19,10 +19,7 @@ in
environment.systemPackages = with pkgs; [
python-with-my-packages
(emacs29.override {
withNativeCompilation = true;
withTreeSitter = true;
})
emacs
automake
bazel

View File

@ -33,4 +33,9 @@ final: prev: {
hash = "sha256-HXkVjdAdmSQx3S4/rLif2slxJ/iXhOosthDGAPsMFIM=";
};
});
emacs = prev.emacs29.override {
withNativeCompilation = true;
withTreeSitter = true;
};
}