mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 14:01:29 +01:00
11 lines
207 B
Nix
11 lines
207 B
Nix
{ pkgs, ... }: {
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = false;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
}
|