dotfiles/nix/hardware/audio.nix
2025-03-26 18:02:38 +04:00

22 lines
334 B
Nix

{ pkgs
, lib
, rootPath
, config
, ...
}:
let
cfg = config.kp2pml30;
in lib.mkIf cfg.hardware.audio {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
alsa-utils
acpid
pulseaudio
];
}