mirror of
https://github.com/0x1d/nix.git
synced 2026-09-20 08:39:15 +02:00
11 lines
208 B
Nix
11 lines
208 B
Nix
{ pkgs, ... }: {
|
|
#sound.enable = true;
|
|
services.pulseaudio.enable = false;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
}
|