nixos-config/large-sw.nix

45 lines
730 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
qutebrowser
2017-08-26 08:55:28 +00:00
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-11-11 07:48:27 +00:00
lean
coq
rustup
# cargo rustc
] ++ (with aspellDicts; [ en de fr nl ]);
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
myemacs = emacs25.override {
withGTK2 = false;
withGTK3 = true;
withXwidgets = true;
};
};
2018-01-05 17:46:15 +00:00
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
users.extraUsers.gebner.extraGroups = [ "wireshark" ];
}