2024-08-13 14:59:55 -03:00
|
|
|
{ pkgs, ... }:
|
2024-06-26 02:12:09 -03:00
|
|
|
|
2024-08-13 14:59:55 -03:00
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
2024-08-01 10:57:05 -03:00
|
|
|
# CORE
|
|
|
|
git
|
|
|
|
emacs
|
|
|
|
ripgrep
|
2024-06-27 00:42:51 -03:00
|
|
|
|
|
|
|
# Optional for DOOM
|
|
|
|
clang
|
|
|
|
coreutils
|
|
|
|
fd
|
|
|
|
|
|
|
|
pandoc # For org-pandoc
|
2024-07-09 06:37:37 -03:00
|
|
|
(aspellWithDicts (
|
|
|
|
dicts: with dicts; [
|
|
|
|
en
|
|
|
|
pt_BR
|
|
|
|
]
|
|
|
|
)) # for flyspell
|
2024-08-01 10:57:05 -03:00
|
|
|
gnuplot_qt # for plotting graphs
|
2024-07-09 06:37:37 -03:00
|
|
|
languagetool # for grammar
|
2024-07-11 05:09:49 -03:00
|
|
|
ledger # for accounting and org-ledger
|
2024-08-01 10:57:05 -03:00
|
|
|
gzip # Otherwise random errors occur from the onChange script
|
2024-06-27 00:42:51 -03:00
|
|
|
];
|
|
|
|
|
|
|
|
# Neatly place the configuration files for doom in their right place.
|
2024-08-01 10:57:05 -03:00
|
|
|
xdg.configFile."doom" = {
|
|
|
|
source = ./doom;
|
|
|
|
recursive = true;
|
|
|
|
};
|
2024-06-26 02:12:09 -03:00
|
|
|
}
|