nixos-config/large-sw.nix

35 lines
572 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
2018-06-10 13:07:27 +00:00
stable.libreoffice-fresh
2018-06-10 13:14:20 +00:00
stablePkgs
2017-09-02 07:10:46 +00:00
calibre
2018-01-06 12:08:22 +00:00
goldendict
2017-06-29 11:41:37 +00:00
2017-01-28 07:28:50 +00:00
vscode
2018-01-06 10:28:40 +00:00
llvmPackages_5.clang
2017-09-22 18:24:13 +00:00
stack
2018-06-10 13:14:20 +00:00
elan
coq
2018-06-10 13:14:20 +00:00
emacsPackages.proofgeneral
2018-01-06 10:29:04 +00:00
rustup
] ++ (with aspellDicts; [ en de fr nl ]);
2018-01-05 17:46:15 +00:00
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
users.extraUsers.gebner.extraGroups = [ "wireshark" ];
}