Replace gccemacs with pure gtk variant

This commit is contained in:
coolneng 2020-09-24 00:03:02 +02:00
parent 1f5d0dc707
commit 2d0a2ae459
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
6 changed files with 17 additions and 17 deletions

7
cachix/mjlbach.nix Normal file
View File

@ -0,0 +1,7 @@
{
nix = {
binaryCaches = [ "https://mjlbach.cachix.org" ];
binaryCachePublicKeys =
[ "mjlbach.cachix.org-1:dR0V90mvaPbXuYria5mXvnDtFibKYqYc2gtl9MWSkqI=" ];
};
}

View File

@ -1,8 +0,0 @@
{
nix = {
binaryCaches = [ "https://nix-community.cachix.org" ];
binaryCachePublicKeys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
}

View File

@ -105,7 +105,7 @@
./modules/periodic.nix
./modules/power.nix
./modules/cachix.nix
./overlays/emacs-overlay.nix
./overlays/emacs.nix
];
}

View File

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

View File

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

8
overlays/emacs.nix Normal file
View File

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