mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
23 lines
395 B
Nix
23 lines
395 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
audacity
|
|
chromaprint # music-brainz fingerprint
|
|
ffmpeg
|
|
gallery-dl
|
|
graphviz
|
|
handbrake
|
|
imagemagick
|
|
image_optim
|
|
inkscape
|
|
puddletag # audio tagging
|
|
mp3splt # splitting mp3 files
|
|
mp3val
|
|
mediaelch
|
|
picard
|
|
projectm
|
|
shotwell
|
|
soundkonverter
|
|
youtube-dl
|
|
];
|
|
}
|