nixos/modules/hardware/sound.nix

20 lines
328 B
Nix
Raw Normal View History

2023-06-15 09:56:25 +08:00
{ pkgs, ... }@inputs:
2023-06-05 21:53:13 +08:00
{
config =
{
2023-06-21 20:47:24 +08:00
sound =
{
enable = true;
extraConfig = "session.suspend-timeout-seconds 0";
2023-06-21 20:57:30 +08:00
};
2023-06-05 21:53:13 +08:00
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire =
{
enable = true;
2023-06-14 19:08:42 +08:00
alsa = { enable = true; support32Bit = true; };
2023-06-05 21:53:13 +08:00
pulse.enable = true;
};
};
}