I am trying to install OBS Studio along with several plugins on my NixOS system, but the plugins do not appear in the OBS interface after installation. Here’s what I've done so far:
Installation Steps
I modified my configuration.nix to include OBS Studio and the following plugins:
After making these changes, I ran:
Are there additional steps I can take to troubleshoot or ensure the plugins load correctly?
Any help would be greatly appreciated!
Installation Steps
I modified my configuration.nix to include OBS Studio and the following plugins:
Code:
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
obs-studio
obs-studio-plugins.obs-shaderfilter
obs-studio-plugins.obs-composite-blur
obs-studio-plugins.obs-scale-to-sound
obs-studio-plugins.obs-move-transition
obs-studio-plugins.obs-gradient-source
obs-studio-plugins.obs-backgroundremoval
];
}
After making these changes, I ran:
Code:
sudo nixos-rebuild switch
Are there additional steps I can take to troubleshoot or ensure the plugins load correctly?
Any help would be greatly appreciated!