This commit is contained in:
2026-03-23 22:32:55 +00:00
parent 2325e48006
commit 95c859b3f4
2 changed files with 16 additions and 0 deletions

15
system/sound.nix Normal file
View File

@@ -0,0 +1,15 @@
{ ... }:
{
hardware = {
sound.enable = true;
};
software.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
}
}