mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 11:26:21 +00:00
13 lines
233 B
Nix
13 lines
233 B
Nix
{ ... }: {
|
|
security.rtkit.enable = true;
|
|
services.pipewire = { # SOUND NEW GEN
|
|
enable = true;
|
|
wireplumber.enable = true;
|
|
pulse.enable = true;
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
};
|
|
}
|