nix-config/modules/video-and-sound.nix

23 lines
302 B
Nix
Raw Permalink Normal View History

2025-01-14 01:29:24 +01:00
{
pkgs,
lib,
...
}: {
environment.systemPackages = with pkgs; [
#shotcut
];
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
programs = {
droidcam.enable = true;
};
}