dotfiles/modules/home/graphical/obs.nix
eriedaberrie bf6495ad71 Initial commit
Note: not the actual initial commit.

I swear I will stop repeatedly force pushing to this single commit eventually
ok.
2024-09-24 01:27:06 -07:00

21 lines
354 B
Nix

{ pkgs, config, lib, ... }:
let
cfg = config.my.graphical.obs;
in {
options.my.graphical.obs = {
enable = lib.mkEnableOption null;
};
config = lib.mkIf cfg.enable {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-vkcapture
obs-vaapi
];
};
};
}