28 lines
403 B
Nix
28 lines
403 B
Nix
{
|
|
pkgs,
|
|
# inputs,
|
|
# system,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# Video & image processing
|
|
ffmpeg
|
|
ffmpegthumbnailer
|
|
mpv
|
|
# gimp3
|
|
# inputs.affinity-nix.packages.${system}.v3
|
|
eog
|
|
# kdePackages.kdenlive
|
|
# Audio
|
|
rhythmbox
|
|
plexamp
|
|
picard
|
|
pavucontrol
|
|
playerctl
|
|
# Media downloaders & clients
|
|
# freetube
|
|
# ytmdl
|
|
];
|
|
}
|