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
androidsdk
gimp
inkscape
jabref
2017-01-28 08:28:50 +01:00
libreoffice
calibre
vscode
coq_8_5
myemacs
# cargo rustc
] ++ (with aspellDicts; [ en de fr nl ]);
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
myemacs = emacs25.override {
withGTK2 = false;
withGTK3 = true;
withXwidgets = true;
};
};
}