nixos/extra/media.nix

32 lines
604 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, lib, pkgs, ... }:
let
2022-02-06 14:15:52 +01:00
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
yt-dlp = pkgs.yt-dlp.override {
withAlias = true;
};
in
2020-11-16 21:14:46 +01:00
{
environment.systemPackages = with pkgs; [
audacity
chromaprint # music-brainz fingerprint
ffmpeg
gallery-dl
graphviz
handbrake
image_optim
2022-02-06 14:15:52 +01:00
imagemagick
2020-11-16 21:14:46 +01:00
inkscape
2022-02-06 14:15:52 +01:00
unstable.mat2 # metadata-cleaning
mediaelch
2021-07-05 22:03:01 +02:00
mp3splt # splitting mp3 files
2020-11-16 21:14:46 +01:00
mp3val
2021-08-10 18:01:23 +02:00
pdfsam-basic # pdf editing
2020-11-16 21:14:46 +01:00
picard
projectm
2022-02-06 14:15:52 +01:00
puddletag # audio tagging
2020-11-16 21:14:46 +01:00
shotwell
soundkonverter
yt-dlp
2020-11-16 21:14:46 +01:00
];
}