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