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
|
2017-01-28 07:28:50 +00:00
|
|
|
libreoffice
|
|
|
|
calibre
|
|
|
|
vscode
|
2016-07-22 11:01:40 +00:00
|
|
|
|
2017-02-10 08:34:34 +00:00
|
|
|
coq_8_6
|
2016-12-26 16:22:22 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
}
|