nix: obs-studio

This commit is contained in:
js0ny 2025-10-13 00:34:40 +01:00
parent c82f504385
commit 3aef15679e
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
enableVirtualCamera = true;
};
}

View file

@ -1,5 +1,6 @@
# ~/.config/nix-config/common/packages-headless.nix # ~/.config/nix-config/common/packages-headless.nix
{pkgs, ...}: { { pkgs, ... }:
{
# nixpkgs.config.allowUnfree = true; # nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
@ -14,5 +15,6 @@
noto-fonts noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
noto-fonts-emoji noto-fonts-emoji
v4l-utils
]; ];
} }