Files
nixos/Droidnix/generated/modules/traveldroid/system/audio.nix
T
2026-04-01 21:17:58 +02:00

24 lines
583 B
Nix

{ lib, config, pkgs, ... }:
{
############################
# Audio system
############################
environment.systemPackages = with pkgs; [
pulseaudio # PulseAudio daemon
pavucontrol # GUI mixer
pamixer # CLI mixer
];
############################
# Enable PulseAudio system-wide
############################
sound.enable = true;
hardware.pulseaudio.enable = true;
############################
# Optional: enable ALSA support
############################
hardware.pulseaudio.support32Bit = true; # for 32-bit apps
}