this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 20 lines 330 B view raw
1{ 2 delib, 3 pkgs, 4 ... 5}: 6delib.module { 7 name = "programs.obs-studio"; 8 9 options = delib.singleEnableOption true; 10 11 nixos.ifEnabled.programs.obs-studio = { 12 enable = true; 13 plugins = with pkgs.obs-studio-plugins; [ 14 obs-vaapi 15 obs-gstreamer 16 obs-vkcapture 17 obs-pipewire-audio-capture 18 ]; 19 }; 20}