mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
13 lines
228 B
Nix
13 lines
228 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
pulseaudio.enable = false;
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
# lowLatency.enable = true;
|
|
};
|
|
};
|
|
}
|