2016-07-22 11:01:40 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs.haskellPackages; with pkgs; [
|
2016-09-21 13:11:17 +00:00
|
|
|
idea-community-eap
|
|
|
|
clion-eap
|
2016-07-22 11:01:40 +00:00
|
|
|
texlive.combined.scheme-full biber
|
|
|
|
androidsdk
|
|
|
|
gimp
|
|
|
|
inkscape
|
|
|
|
jabref
|
2016-08-01 07:11:06 +00:00
|
|
|
stable.libreoffice
|
2016-07-22 11:01:40 +00:00
|
|
|
stable.calibre
|
2016-11-14 15:47:30 +00:00
|
|
|
atom
|
2016-07-22 11:01:40 +00:00
|
|
|
|
|
|
|
coq_8_5
|
2016-12-26 16:22:22 +00:00
|
|
|
|
|
|
|
myemacs
|
|
|
|
|
|
|
|
# cargo rustc
|
2016-07-22 11:01:40 +00:00
|
|
|
] ++ (with aspellDicts; [ en de fr nl ]);
|
|
|
|
|
2016-12-26 16:22:22 +00:00
|
|
|
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
|
|
|
|
myemacs = emacs25.override {
|
|
|
|
withGTK2 = false;
|
|
|
|
withGTK3 = true;
|
|
|
|
withXwidgets = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-07-22 11:01:40 +00:00
|
|
|
}
|