17 lines
286 B
Nix
17 lines
286 B
Nix
|
{ lib, config, pkgs, ... }:
|
||
|
let
|
||
|
cfg = config.profile.obs;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
programs.obs-studio = {
|
||
|
enable = true;
|
||
|
plugins = with pkgs.obs-studio-plugins; [
|
||
|
obs-vaapi
|
||
|
obs-pipewire-audio-capture
|
||
|
wlrobs
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|