all repos — nixfiles @ 186c927d0fc00b25629e2816ca78be05e56c2271

System and user configuration, managed by nix and home-manager

User-interface: Use default build configuration for Emacs
Alan Pearce alan@alanpearce.eu
Thu, 07 Dec 2017 16:11:01 +0100
commit

186c927d0fc00b25629e2816ca78be05e56c2271

parent

3a20509e2fd9ca2441d370a1c81b724ef84be990

1 files changed, 1 insertions(+), 4 deletions(-)

jump to
M modules/user-interface.nixmodules/user-interface.nix
@@ -4,10 +4,7 @@ let   emacsPackage = import ../packages/emacs.nix {
     inherit (pkgs) stdenv;
     pkgs = pkgs.unstable;
-    emacs = pkgs.lib.overrideDerivation (pkgs.emacs.override {
-        withGTK2 = false;
-        withGTK3 = true;
-      }) (attrs: {
+    emacs = pkgs.lib.overrideDerivation (pkgs.emacs) (attrs: {
         postInstall = attrs.postInstall + ''
           rm $out/share/applications/emacs.desktop
         '';