2023-11-21 21:01:56 +01:00
|
|
|
{ pkgs, lib, config, ... }:
|
2023-10-23 22:05:56 +02:00
|
|
|
{
|
2023-11-22 16:32:20 +01:00
|
|
|
config = lib.mkIf config.frogeye.extra {
|
|
|
|
programs = {
|
|
|
|
pandoc.enable = true;
|
|
|
|
};
|
|
|
|
home.packages = with pkgs; ([
|
|
|
|
# android tools
|
|
|
|
android-tools
|
|
|
|
|
|
|
|
# downloading
|
|
|
|
yt-dlp
|
|
|
|
megatools
|
|
|
|
# transmission TODO Collision if both transmissions are active?
|
|
|
|
|
|
|
|
# Multimedia toolbox
|
|
|
|
ffmpeg
|
|
|
|
|
|
|
|
# documents
|
|
|
|
visidata
|
|
|
|
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
|
|
|
|
|
|
|
|
] ++ lib.optionals config.frogeye.desktop.xorg [
|
|
|
|
|
|
|
|
# multimedia editors
|
|
|
|
gimp
|
|
|
|
inkscape
|
|
|
|
darktable
|
|
|
|
blender
|
|
|
|
puddletag
|
|
|
|
musescore
|
|
|
|
audacity
|
|
|
|
|
|
|
|
# downloading
|
|
|
|
transmission-qt
|
|
|
|
|
|
|
|
# FIXME Below not on aarch64
|
|
|
|
# wine
|
|
|
|
wine
|
|
|
|
# TODO wine-gecko wine-mono lib32-libpulse (?)
|
|
|
|
|
|
|
|
# gaming
|
|
|
|
steam
|
|
|
|
yuzu-mainline
|
|
|
|
minecraft
|
|
|
|
# TODO factorio
|
|
|
|
|
|
|
|
]);
|
|
|
|
};
|
2023-10-23 22:05:56 +02:00
|
|
|
}
|