nix/module/Sound.nix

21 lines
406 B
Nix
Raw Normal View History

2024-06-25 04:04:39 +03:00
{ lib, config, ... }: with lib; let
cfg = config.module.desktop.sound;
in {
options = {
module.desktop.sound.enable = mkEnableOption "Sound.";
};
config = mkIf cfg.enable {
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
pulse.enable = true;
alsa = {
enable = true;
support32Bit = true;
};
2024-06-25 04:04:39 +03:00
};
2024-03-28 07:51:33 +03:00
};
}