blob: eac6777cbb87b00af4380488ff1fb4426c3c4980 (
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
];
}
|