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