discord: attempt to enable streaming on hyprland

This commit is contained in:
Christoph Hollizeck 2024-10-20 22:27:47 +02:00
parent 1a4fa215d0
commit 009e52c996
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 1763BB530F50279E
3 changed files with 23 additions and 2 deletions

View file

@ -15,5 +15,14 @@ in
enable = mkBoolOpt false "Whether or not to enable obs-studio";
};
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ obs-studio ]; };
config = mkIf cfg.enable {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-move-transition
];
};
};
}