2016-07-22 11:01:40 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2019-05-14 13:50:46 +00:00
|
|
|
let curaWorkaround = with pkgs; stdenv.mkDerivation {
|
|
|
|
name = "cura-without-openmp-${cura.version}";
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/59901
|
|
|
|
buildPhase = ''
|
|
|
|
makeWrapper ${cura}/bin/cura $out/bin/cura --set OMP_NUM_THREADS 1
|
2019-05-14 14:12:24 +00:00
|
|
|
mkdir $out/nix-support
|
|
|
|
cp ${cura}/nix-support/propagated-user-env-packages $out/nix-support
|
2019-05-14 13:50:46 +00:00
|
|
|
'';
|
|
|
|
phases = [ "buildPhase" ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
}; in
|
|
|
|
|
2016-07-22 11:01:40 +00:00
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs.haskellPackages; with pkgs; [
|
2016-09-21 13:11:17 +00:00
|
|
|
idea-community-eap
|
2019-01-15 09:37:51 +00:00
|
|
|
# clion-eap
|
2016-07-22 11:01:40 +00:00
|
|
|
texlive.combined.scheme-full biber
|
|
|
|
gimp
|
2019-02-27 10:16:19 +00:00
|
|
|
inkscape
|
2019-01-15 09:37:51 +00:00
|
|
|
# jabref
|
2018-06-10 13:07:27 +00:00
|
|
|
stable.libreoffice-fresh
|
2018-06-10 13:14:20 +00:00
|
|
|
stablePkgs
|
2018-06-14 11:24:42 +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-08-14 12:58:54 +00:00
|
|
|
cquery
|
2016-07-22 11:01:40 +00:00
|
|
|
|
2017-09-22 18:24:13 +00:00
|
|
|
stack
|
|
|
|
|
2018-06-10 13:14:20 +00:00
|
|
|
elan
|
2018-08-07 12:47:55 +00:00
|
|
|
# coq
|
2019-01-15 09:37:51 +00:00
|
|
|
# emacsPackages.proofgeneral
|
2018-01-06 10:29:04 +00:00
|
|
|
|
2019-01-15 09:37:51 +00:00
|
|
|
# virtmanager
|
2018-11-12 18:04:15 +00:00
|
|
|
|
2019-05-14 13:50:46 +00:00
|
|
|
curaWorkaround
|
|
|
|
openscad
|
|
|
|
# freecad
|
|
|
|
meshlab
|
|
|
|
|
|
|
|
yarn
|
|
|
|
|
2018-11-18 12:14:46 +00:00
|
|
|
gnome3.baobab
|
|
|
|
|
2017-12-26 10:01:31 +00:00
|
|
|
rustup
|
2016-07-22 11:01:40 +00:00
|
|
|
] ++ (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" ];
|
|
|
|
|
2016-07-22 11:01:40 +00:00
|
|
|
}
|