Update audio.nix

This commit is contained in:
ediblerope 2026-01-10 20:30:28 +00:00 committed by GitHub
parent 936b3d3e92
commit a732424c62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
# audio.nix # audio.nix
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
# Enable sound with pipewire. # Enable sound with pipewire.
services.pulseaudio.enable = false; services.pulseaudio.enable = false;
@ -9,6 +10,5 @@
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
jack.enable = true;
}; };
} }