nixos-config/large-sw.nix

35 lines
562 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
2018-08-05 10:41:02 +02:00
clion-eap
texlive.combined.scheme-full biber
gimp
2018-08-07 14:47:55 +02:00
# inkscape
jabref
2018-06-10 15:07:27 +02:00
stable.libreoffice-fresh
2018-06-10 15:14:20 +02:00
stablePkgs
2018-06-14 13:24:42 +02:00
# calibre
2018-01-06 13:08:22 +01:00
goldendict
2017-06-29 13:41:37 +02:00
2017-01-28 08:28:50 +01:00
vscode
2018-08-14 14:58:54 +02:00
cquery
2017-09-22 20:24:13 +02:00
stack
2018-06-10 15:14:20 +02:00
elan
2018-08-07 14:47:55 +02:00
# coq
2018-06-10 15:14:20 +02:00
emacsPackages.proofgeneral
2018-01-06 11:29:04 +01:00
rustup
] ++ (with aspellDicts; [ en de fr nl ]);
2018-01-05 18:46:15 +01:00
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
users.extraUsers.gebner.extraGroups = [ "wireshark" ];
}