My NixOS dotfiles
0

Configure Feed

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

✨ obs

Simon R. - fantomitechno (Jun 25, 2026, 1:35 PM +0200) e9861354 40e52919

+19
+1
hosts/desktop/default.nix
··· 18 18 "games.nix" 19 19 "jetbrain.nix" 20 20 "network.nix" 21 + "obs.nix" 21 22 "nantarena.nix" 22 23 ]); 23 24
+1
hosts/laptop/default.nix
··· 24 24 "network.nix" 25 25 "nantarena.nix" 26 26 "raspberry.nix" 27 + "obs.nix" 27 28 ]); 28 29 29 30 # Bootloader
+17
modules/obs.nix
··· 1 + { ... }: 2 + { 3 + home-manager.users.fantomitechno = { pkgs, ... }: { 4 + programs = { 5 + obs-studio = { 6 + enable = true; 7 + plugins = with pkgs.obs-studio-plugins; [ 8 + wlrobs 9 + obs-backgroundremoval 10 + obs-pipewire-audio-capture 11 + obs-vkcapture 12 + obs-multi-rtmp 13 + ]; 14 + }; 15 + }; 16 + }; 17 + }