dotfiles/config/nix/hm/extra.nix

45 lines
764 B
Nix
Raw Normal View History

2023-10-23 22:05:56 +02:00
{ pkgs, ... }:
{
2023-10-28 22:09:36 +02:00
home.packages = with pkgs; [
2023-10-23 22:05:56 +02:00
# android tools
android-tools
# multimedia editors
gimp
inkscape
darktable
blender
puddletag
musescore
audacity
# downloading
yt-dlp
megatools
2023-10-28 22:09:36 +02:00
# transmission TODO Collision if both transmissions are active?
2023-10-23 22:05:56 +02:00
transmission-qt
# wine
wine
# TODO wine-gecko wine-mono lib32-libpulse (?)
# documents
pandoc
texlive.combined.scheme-full
pdftk
hunspell
hunspellDicts.en_GB-ize
hunspellDicts.en_US
hunspellDicts.fr-moderne
hunspellDicts.nl_NL
# TODO libreoffice-extension-languagetool or libreoffice-extension-grammalecte-fr
# gaming
steam
yuzu-mainline
minecraft
# TODO factorio
];
}