blob: c3decb89fc182ecc8eb41090dc40b7aa9ee681a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ pkgs, ... }:
{
# GStreamer plugin set so apps (e.g. mpv, totem, browsers) can decode media.
# Installed system-wide so anything linking GStreamer picks them up.
environment.systemPackages = with pkgs; [
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
];
}
|