Migrate to emacsGcc via emacs-overlay

This commit is contained in:
coolneng 2020-09-06 15:08:18 +02:00
parent fba79883f5
commit f0ae1f74cd
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 9 additions and 1 deletions

View File

@ -103,6 +103,7 @@
./modules/printing.nix
./modules/periodic.nix
./modules/power.nix
./overlays/emacs-overlay.nix
];
}

View File

@ -20,7 +20,7 @@
haskellPackages.pandoc-citeproc
# Text editors
neovim
emacs
emacsGcc
ripgrep
fd
clang

View File

@ -0,0 +1,7 @@
{
nixpkgs.overlays = [
(import (builtins.fetchTarball {
url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
}))
];
}