Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

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

feat: Add OBS

+15
+15
modules/nixos/traits/gaming.nix
··· 27 27 # osu-stable # @TODO Reenable when I figure out why nix-gaming's cachix doesn't ever seem to work 28 28 parsec-bin 29 29 # wine-discord-ipc-bridge 30 + (pkgs.wrapOBS { 31 + plugins = ( 32 + (with pkgs.obs-studio-plugins; [ 33 + input-overlay 34 + obs-pipewire-audio-capture 35 + obs-scale-to-sound 36 + obs-vaapi 37 + obs-vkcapture 38 + wlrobs 39 + ]) 40 + ++ (lib.optionals (lib.elem "nvidia" config.services.xserver.videoDrivers) [ 41 + pkgs.obs-studio-plugins.obs-nvfbc 42 + ]) 43 + ); 44 + }) 30 45 ]; 31 46 services.pipewire.lowLatency.enable = true; 32 47 security.rtkit.enable = true; # make pipewire realtime-capable