nixos/modules/hardware/audio.nix

12 lines
198 B
Nix
Raw Normal View History

2025-02-03 07:55:17 +01:00
_: {
2025-01-31 15:13:22 +01:00
config = {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};
}