nix-dotfiles/profiles/development.nix

44 lines
499 B
Nix
Raw Normal View History

2024-06-18 16:30:12 +02:00
{ config, pkgs, lib, ... }:
{
imports =
[
./base.nix
2024-10-01 11:41:42 +02:00
#./ai.nix
2024-06-18 16:30:12 +02:00
];
environment.systemPackages = with pkgs; [
texliveFull
pandoc
pandoc-plantuml-filter
plantuml
haskellPackages.pandoc-plot
pandoc-imagine
pandoc-katex
haskellPackages.pandoc-cli
pandoc-include
markdownlint-cli
libsForQt5.kate
poetry
gcc
cargo
rustup
2024-10-01 11:41:42 +02:00
cmake
gnumake
2024-09-23 12:54:23 +02:00
mpi
2024-10-01 11:41:42 +02:00
bc
2024-09-23 12:54:23 +02:00
gnuplot
2024-10-01 11:41:42 +02:00
ffmpeg
2024-06-18 16:30:12 +02:00
2024-10-08 10:30:21 +02:00
ripes
2024-06-18 16:30:12 +02:00
];
}