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 13:11:17 +00:00
idea-community-eap
clion-eap
texlive.combined.scheme-full biber
gimp
inkscape
jabref
2017-08-20 08:22:57 +00:00
libreoffice-fresh
2017-09-02 07:10:46 +00:00
calibre
2017-06-29 11:41:37 +00:00
2017-08-26 08:55:28 +00:00
# qutebrowser
2017-08-20 17:30:11 +00:00
open-wbo # only in 17.09+
2017-01-28 07:28:50 +00:00
vscode
2017-06-29 11:41:37 +00:00
clang
2017-09-22 18:24:13 +00:00
stack
2017-02-10 08:34:34 +00: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;
};
};
}