1
0
mirror of https://github.com/tboerger/nixos-config synced 2026-05-03 04:09:04 +02:00
Files
2026-02-26 14:26:50 +01:00

33 lines
376 B
Nix

{
pkgs,
lib,
config,
options,
...
}:
with lib;
let
cfg = config.profile.programs.streaming;
in
{
options = {
profile = {
programs = {
streaming = {
enable = mkEnableOption "Streaming";
};
};
};
};
config = mkIf cfg.enable {
home = {
packages = with pkgs; [
obs-studio
];
};
};
}