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 ])
|
|
|
|
];
|
|
|
|
|
2025-01-22 22:14:53 +00:00
|
|
|
# terminal = [
|
|
|
|
# ghostty
|
|
|
|
# ];
|
|
|
|
|
2024-10-06 16:27:11 +00:00
|
|
|
modernReplacements = [
|
|
|
|
bat
|
|
|
|
fd
|
|
|
|
ripgrep
|
|
|
|
];
|
|
|
|
|
|
|
|
utils = [
|
|
|
|
jet
|
|
|
|
jq
|
|
|
|
pandoc
|
|
|
|
parallel
|
2025-01-22 22:14:53 +00:00
|
|
|
tokei
|
2024-10-06 16:27:11 +00:00
|
|
|
wget
|
|
|
|
];
|
|
|
|
|
|
|
|
multimedia = [
|
|
|
|
ffmpeg
|
|
|
|
graphviz
|
|
|
|
imagemagick
|
|
|
|
inkscape
|
|
|
|
pdf2svg
|
|
|
|
poppler_utils
|
|
|
|
];
|
|
|
|
|
2025-02-09 16:59:45 +00:00
|
|
|
academic = [
|
|
|
|
zotero
|
|
|
|
];
|
|
|
|
|
2024-10-06 16:27:11 +00:00
|
|
|
}
|