16 lines
244 B
Nix
16 lines
244 B
Nix
{
|
|
pkgs,
|
|
libs,
|
|
...
|
|
}: {
|
|
programs.obs-studio.enable = true;
|
|
|
|
xdg.configFile = {
|
|
"autostart/obs-autostart.desktop" = libs.mkAutostart {
|
|
inherit pkgs;
|
|
name = "obs";
|
|
command = "obs --startreplaybuffer";
|
|
};
|
|
};
|
|
}
|