discord: attempt to enable streaming on hyprland

This commit is contained in:
Christoph Hollizeck 2024-10-20 22:27:47 +02:00
parent 45feb78596
commit e390739147
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
3 changed files with 23 additions and 2 deletions

View file

@ -16,5 +16,9 @@ in
enable = mkBoolOpt false "Whether or not to enable basic configuration";
};
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ discord ]; };
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
discord
];
};
}

View file

@ -15,5 +15,14 @@ in
enable = mkBoolOpt false "Whether or not to enable obs-studio";
};
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ obs-studio ]; };
config = mkIf cfg.enable {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-move-transition
];
};
};
}