mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
12 lines
232 B
Nix
Executable file
12 lines
232 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;
|
|
};
|
|
}
|