dotfiles/nixos/modules/pulseaudio.nix
Magic_RB 3fb5d945c0
stuff&things
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-08-18 22:55:46 +02:00

29 lines
623 B
Nix

# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
{
config,
lib,
pkgs,
...
}:
with lib; let
bluetooth-enable = config.hardware.bluetooth.enable;
cfg = config.magic_rb.pulseaudio;
in {
options.magic_rb.pulseaudio = {
enable = mkEnableOption "Enable pulseaudio, with bluetooth support if bt enabled";
};
config = mkIf cfg.enable {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
};
}