nixos-config/large-sw.nix

71 lines
1.1 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs.haskellPackages; with pkgs; [
2021-05-22 17:12:22 +00:00
idea.idea-community
# idea.clion
texlive.combined.scheme-full biber
gimp
2019-02-27 10:16:19 +00:00
inkscape
2019-01-15 09:37:51 +00:00
# jabref
libreoffice-fresh
2018-06-14 11:24:42 +00:00
# calibre
2021-05-23 18:43:20 +00:00
goldendict
2017-06-29 11:41:37 +00:00
2020-11-12 13:16:43 +00:00
xournal
2021-06-13 09:31:54 +00:00
(xournalpp.overrideDerivation (_: {
patches = [
./xournalpp-cursor-blink.patch
];
}))
2020-11-05 12:24:45 +00:00
2017-01-28 07:28:50 +00:00
vscode
2021-05-24 17:22:25 +00:00
2020-06-07 09:21:11 +00:00
ccls
2021-05-24 17:22:25 +00:00
sumneko-lua-language-server
texlab
rnix-lsp
pyright
nodePackages.typescript-language-server
2021-05-25 19:05:27 +00:00
rust-analyzer
2020-05-22 09:17:53 +00:00
# stack
2017-09-22 18:24:13 +00:00
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
(if lib.hasAttr "curaPlugins" pkgs then
2019-06-17 11:49:08 +00:00
cura.override {
2021-04-26 13:35:38 +00:00
plugins = with curaPlugins; [ octoprint rawmouse ];
2019-06-17 11:49:08 +00:00
}
else cura)
2019-05-14 13:50:46 +00:00
openscad
2020-07-19 16:37:57 +00:00
freecad
2020-10-10 13:48:15 +00:00
calculix
2019-05-14 13:50:46 +00:00
meshlab
2020-06-13 10:39:18 +00:00
audacious
2020-07-14 14:47:09 +00:00
flac
clementine
uvccapture
2020-06-13 10:39:18 +00:00
2019-05-14 13:50:46 +00:00
yarn
2018-11-18 12:14:46 +00:00
gnome3.baobab
rustup
] ++ (with aspellDicts; [ en de fr nl ]);
2018-01-05 17:46:15 +00:00
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
2020-11-21 10:28:14 +00:00
hardware.opengl.driSupport32Bit = true;
2018-01-05 17:46:15 +00:00
}