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