nix-dotfiles/profiles/development.nix

40 lines
449 B
Nix
Raw Normal View History

2024-06-18 16:30:12 +02:00
{ config, pkgs, lib, ... }:
{
imports =
[
./base.nix
./ai.nix
];
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-09-23 12:54:23 +02:00
mpi
gnuplot
2024-06-18 16:30:12 +02:00
];
}