Files
nixos-dotfiles/modules/desktop/screencast/all.nix
2025-04-13 15:09:14 +08:00

16 lines
252 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all screencast tools";
optionPath = [
"desktop"
"screencast"
"all"
];
config' = {
my.desktop.screencast = {
obs-studio.enable = true;
};
};
}