nix-dotfiles/profiles/development.nix

39 lines
430 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
];
}