nixos-config/large-sw.nix

37 lines
577 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
gimp
inkscape
jabref
2017-08-20 10:22:57 +02:00
libreoffice-fresh
2017-09-02 09:10:46 +02:00
calibre
2017-06-29 13:41:37 +02:00
2017-08-26 10:55:28 +02:00
# qutebrowser
2017-08-20 19:30:11 +02:00
open-wbo # only in 17.09+
2017-01-28 08:28:50 +01:00
vscode
2017-06-29 13:41:37 +02:00
clang
2017-09-22 20:24:13 +02:00
stack
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;
};
};
}