mirror of https://git.jolheiser.com/dotnix.git
8 lines
126 B
Nix
8 lines
126 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
programs.obs-studio = {
|
||
|
enable = true;
|
||
|
plugins = [ pkgs.obs-studio-plugins.obs-webkitgtk ];
|
||
|
};
|
||
|
}
|