Files
2025-12-20 23:05:28 +08:00

16 lines
284 B
Nix

{ config, lib, ... }:
let
cfg = config.my.desktop.screencast.all;
in
{
options.my.desktop.screencast.all = {
enable = lib.mkEnableOption "all screencast tools";
};
config = lib.mkIf cfg.enable {
my.desktop.screencast = {
obs-studio.enable = true;
};
};
}