obs+gpg fix

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-09 23:39:09 +02:00
parent 28be563a54
commit a2c8c6e4d6
8 changed files with 66 additions and 34 deletions

15
home-modules/obs.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, lib, host, ... }:
lib.mkIf (host != "NxACE")
{
# home.packages = with pkgs; [
# obs-studio
# ];
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-move-transition
obs-composite-blur
obs-backgroundremoval
];
};
}