Using emacs-unstable
from emacs-overlay
disabling graphics
This commit is contained in:
parent
1fd7a2631c
commit
8b6317922d
1 changed files with 17 additions and 9 deletions
|
@ -1,4 +1,8 @@
|
||||||
{inputs, self, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
self,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.flake-parts.flakeModules.easyOverlay
|
inputs.flake-parts.flakeModules.easyOverlay
|
||||||
];
|
];
|
||||||
|
@ -31,14 +35,18 @@
|
||||||
|
|
||||||
packages = {
|
packages = {
|
||||||
ccrEmacsWithoutPackages =
|
ccrEmacsWithoutPackages =
|
||||||
(inputs'.emacs-overlay.packages.emacsPgtk.override {
|
(inputs'.emacs-overlay.packages.emacs-unstable.override {
|
||||||
treeSitterPlugins =
|
# treeSitterPlugins =
|
||||||
builtins.attrValues
|
# builtins.attrValues
|
||||||
(builtins.removeAttrs pkgs.tree-sitter-grammars ["recurseForDerivations"]);
|
# (builtins.removeAttrs pkgs.tree-sitter-grammars ["recurseForDerivations"]);
|
||||||
|
withNS = false;
|
||||||
|
withX = false;
|
||||||
|
withGTK2 = false;
|
||||||
|
withGTK3 = false;
|
||||||
|
withWebP = false;
|
||||||
})
|
})
|
||||||
.overrideAttrs (_: {
|
.overrideAttrs (old: {
|
||||||
name = "ccr-emacs-${inputs.emacs-src.rev}";
|
name = "ccr-emacs";
|
||||||
src = inputs.emacs-src.outPath;
|
|
||||||
version = "29";
|
version = "29";
|
||||||
});
|
});
|
||||||
ccrEmacs =
|
ccrEmacs =
|
||||||
|
|
Reference in a new issue