mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 10:14:09 -05:00
20 lines
387 B
Nix
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/";
|
|
};
|
|
}
|