mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-27 14:30:14 +01:00
feat: makes obs-studio work with virtual camera for signal calls
This commit is contained in:
parent
487dbc3a8d
commit
804f6b6ea2
1 changed files with 16 additions and 1 deletions
|
|
@ -16,13 +16,28 @@ in
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
enableVirtualCamera = true;
|
||||
};
|
||||
environment.systemPackages = [
|
||||
(pkgs.wrapOBS {
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
wlrobs
|
||||
obs-backgroundremoval
|
||||
obs-pipewire-audio-capture
|
||||
obs-vaapi # optional AMD hardware acceleration
|
||||
obs-gstreamer
|
||||
obs-vkcapture
|
||||
];
|
||||
})
|
||||
];
|
||||
home-manager = {
|
||||
users.${username} = {
|
||||
home.packages = with pkgs; [
|
||||
gimp
|
||||
darktable
|
||||
audacity
|
||||
obs-studio
|
||||
kdePackages.kdenlive
|
||||
orca-slicer
|
||||
freecad
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue