Kieran's opinionated (and probably slightly dumb) nix config

feat: install obs

+10
+10
home-manager/home.nix
··· 391 391 }; 392 392 }; 393 393 394 + programs.obs-studio = { 395 + enable = true; 396 + plugins = with pkgs.obs-studio-plugins; [ 397 + wlrobs 398 + obs-backgroundremoval 399 + obs-pipewire-audio-capture 400 + ]; 401 + }; 402 + 403 + 394 404 # Nicely reload system units when changing configs 395 405 systemd.user.startServices = "sd-switch"; 396 406