Files
nixos-dotfiles/modules/desktop/screencast/all.nix
T

16 lines
285 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 = false;
};
};
}