nixos/legacy/modules/media.nix
2023-03-12 19:07:35 +01:00

33 lines
887 B
Nix

{ config, lib, pkgs, ... }:
let
yt-dlp = pkgs.yt-dlp.override {
withAlias = true;
};
in
{
environment.systemPackages = with pkgs; [
audacity # audio editing
chromaprint # music-brainz fingerprint
ffmpeg # general purpose
gallery-dl # image donwloader
handbrake # video converter
image_optim # image compressors
imagemagick # image converter
inkscape # vector image editing
mat2 # metadata-cleaning
mediaelch # video sorting
metadata-cleaner # mat2-gui
mp3gain # audio volume
mp3splt # splitting mp3 files
mp3val # audio validation
pdfgrep # grep in pdfs
pdfsam-basic # pdf editing
picard # music tagging
projectm # visualization of music
puddletag # audio tagging
shotwell # photo management
sonixd # cloud-music-player
soundkonverter # audio converter
yt-dlp # videao download
];
}