nixos-config/large-sw.nix

32 lines
527 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs.haskellPackages; with pkgs; [
2016-09-21 15:11:17 +02:00
idea-community-eap
clion-eap
texlive.combined.scheme-full biber
2017-06-29 13:40:13 +02:00
# androidsdk
gimp
inkscape
jabref
2017-01-28 08:28:50 +01:00
libreoffice
2017-08-05 17:43:29 +02:00
calibre
2017-06-29 13:41:37 +02:00
2017-01-28 08:28:50 +01:00
vscode
2017-06-29 13:41:37 +02:00
clang
2017-02-10 09:34:34 +01:00
coq_8_6
# cargo rustc
] ++ (with aspellDicts; [ en de fr nl ]);
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
myemacs = emacs25.override {
withGTK2 = false;
withGTK3 = true;
withXwidgets = true;
};
};
}