module(obs): Refactor obs-studio module from hmModule into nixosModule

This commit is contained in:
ulic-youthlic 2025-06-24 21:42:12 +08:00
parent 149a4057a5
commit 6f35b2ebcc
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
7 changed files with 5 additions and 7 deletions

View file

@ -35,7 +35,6 @@
sops.enable = true;
mpv.enable = true;
atuin.enable = true;
obs.enable = true;
chromium.enable = true;
thunderbird.enable = true;
# espanso.enable = true;

View file

@ -39,7 +39,6 @@
kvm.enable = true;
atuin.enable = true;
thunderbird.enable = true;
obs.enable = true;
chromium.enable = true;
espanso.enable = true;
ion.enable = true;

View file

@ -11,7 +11,6 @@
./wluma.nix
./niri.nix
./starship
./obs.nix
./fuzzel.nix
./mpv.nix
./swaylock.nix

View file

@ -32,6 +32,7 @@
kanata.enable = true;
tailscale.enable = true;
wshowkeys.enable = true;
obs.enable = true;
};
};
programs.gnupg.agent = {

View file

@ -51,6 +51,7 @@
juicity.client.enable = true;
owncast.enable = true;
wshowkeys.enable = true;
obs.enable = true;
};
};

View file

@ -26,5 +26,6 @@
./radicle.nix
./wshowkeys.nix
./bash.nix
./obs.nix
];
}

View file

@ -1,7 +1,7 @@
{
pkgs,
config,
lib,
config,
...
}: let
cfg = config.youthlic.programs.obs;
@ -16,11 +16,9 @@ in {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-source-record
obs-vaapi
obs-vkcapture
obs-webkitgtk
obs-pipewire-audio-capture
];
enableVirtualCamera = true;
};
};
}