CrOS/modules/software/gstreamer.nix
TheWanderingCrow 88c513bac3 add gstreamer
2025-04-22 10:13:29 -04:00

20 lines
387 B
Nix

{
config,
pkgs,
lib,
...
}:
lib.mkIf config.module.gui.enable {
environment.systemPackages = with pkgs; [
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-rs
gst_all_1.gst-libav
gst_all_1.gst-vaapi
];
environment.variables = {
GST_PLUGIN_PATH = "/run/current-system/sw/lib/gstreamer-1.0/";
};
}