Bohdan's terminal configuration
0
fork

Configure Feed

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

nix: enable OBS Studio; disable Blender

bpavuk e9ee55cc e2b03c8f

+15 -1
+15 -1
nixos/home/life/creativity.nix
··· 4 4 home.packages = with pkgs; [ 5 5 # VIDEO 6 6 # davinci-resolve 7 + kdePackages.kdenlive 7 8 8 9 # 3D 9 - blender 10 + # blender 10 11 ]; 12 + 13 + programs.obs-studio = { 14 + enable = true; 15 + 16 + plugins = with pkgs.obs-studio-plugins; [ 17 + wlrobs 18 + obs-pipewire-audio-capture 19 + obs-multi-rtmp 20 + obs-vaapi 21 + obs-gstreamer 22 + obs-vkcapture 23 + ]; 24 + }; 11 25 }