mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
9 lines
159 B
Nix
9 lines
159 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
package = pkgs.obs-studio;
|
|
plugins = [ pkgs.obs-studio-plugins.wlrobs ];
|
|
};
|
|
}
|