nix-config/modules/tools.nix

38 lines
423 B
Nix
Raw Normal View History

2024-10-06 16:27:11 +00:00
{ pkgs, emacs-larstvei, ... }:
2024-10-06 19:53:29 +00:00
with pkgs;
{
2024-10-06 16:27:11 +00:00
editor = [
emacs-larstvei.defaultPackage.${pkgs.system}
];
spelling = [
(hunspellWithDicts [ hunspellDicts.nb_NO ])
];
modernReplacements = [
bat
fd
ripgrep
];
utils = [
cloc
jet
jq
pandoc
parallel
wget
];
multimedia = [
ffmpeg
graphviz
imagemagick
inkscape
pdf2svg
poppler_utils
];
}