nixos-config/large-sw.nix

37 lines
612 B
Nix
Raw Permalink 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
stable.gimp
stable.inkscape
jabref
stable.libreoffice-fresh
stable.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
stable.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;
};
};
}