mirror of
https://github.com/larstvei/nix-config.git
synced 2024-11-26 08:58:31 +00:00
37 lines
423 B
Nix
37 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
|
||
|
];
|
||
|
|
||
|
}
|