dotfiles/hm/extra/default.nix

85 lines
2 KiB
Nix
Raw Normal View History

2024-12-15 00:29:51 +01:00
{
pkgs,
lib,
config,
onixpkgs,
...
}:
2024-11-30 20:06:14 +01:00
let
opkgs = import onixpkgs { inherit (pkgs) system; };
in
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;
yt-dlp = {
enable = true;
settings = {
format = "bestvideo[height<=${builtins.toString config.frogeye.desktop.maxVideoHeight}]+bestaudio/best";
sponsorblock-mark = "all";
sponsorblock-remove = "intro,outro,sponsor,selfpromo,preview,interaction,music_offtopic";
sub-langs = "en,fr";
write-auto-subs = true;
write-subs = true;
};
};
2023-11-22 16:32:20 +01:00
};
2024-12-15 00:29:51 +01:00
home.packages =
with pkgs;
(
[
# android tools
android-tools
2023-11-22 16:32:20 +01:00
2024-12-15 00:29:51 +01:00
# Communication
signal-desktop
(opkgs.callPackage ./whisperx.nix { }) # Transcribe voice messages
2023-12-16 17:08:18 +01:00
2024-12-15 00:29:51 +01:00
# downloading
# transmission TODO Collision if both transmissions are active?
2023-11-22 16:32:20 +01:00
2024-12-15 00:29:51 +01:00
# Multimedia toolbox
ffmpeg
2023-11-22 16:32:20 +01:00
2024-12-15 00:29:51 +01:00
# documents
visidata
# texlive.combined.scheme-full
# TODO Convert existing LaTeX documents into using Nix build system
# texlive is big and not that much used, sooo
pdftk
pdfgrep
2023-11-22 16:32:20 +01:00
2024-12-15 00:29:51 +01:00
# Misc
haskellPackages.dice
rustdesk-flutter
2024-02-17 19:05:50 +01:00
2024-12-15 00:29:51 +01:00
]
++ lib.optionals config.frogeye.desktop.xorg [
2023-11-22 16:32:20 +01:00
2024-12-15 00:29:51 +01:00
# multimedia editors
darktable
puddletag
audacity
xournalpp
krita
2023-11-22 16:32:20 +01:00
2024-12-15 00:29:51 +01:00
# downloading
transmission_4-qt
# wine only makes sense on x86_64
]
++ lib.optionals pkgs.stdenv.isx86_64 [
wine
# TODO wine-gecko wine-mono lib32-libpulse (?)
2023-12-04 22:47:02 +01:00
2024-12-15 00:29:51 +01:00
]
++ lib.optionals (!stdenv.isAarch64) [
# Musescore is broken on aarch64
musescore
# Blender 4.0.1 can't compile on aarch64
# https://hydra.nixos.org/job/nixos/release-23.11/nixpkgs.blender.aarch64-linux
blender
]
);
2023-11-22 16:32:20 +01:00
};
2023-10-23 22:05:56 +02:00
}