mirror of
https://github.com/larstvei/nix-config.git
synced 2024-11-26 00:48:30 +00:00
38 lines
423 B
Nix
38 lines
423 B
Nix
{ pkgs, emacs-larstvei, ... }:
|
|
with pkgs;
|
|
{
|
|
|
|
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
|
|
];
|
|
|
|
}
|