feat: conform with new nix namings

This commit is contained in:
Ahwx 2025-04-08 20:11:16 +02:00
parent 7744c92905
commit 5139091ab9
3 changed files with 29 additions and 19 deletions

View file

@ -1,11 +1,13 @@
{ ... }:
{ ... }:
{
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# lowLatency.enable = true;
services = {
pulseaudio.enable = false;
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# lowLatency.enable = true;
};
};
}