dotfiles/nixos/modules/pulseaudio.nix
2020-12-26 23:58:39 +01:00

17 lines
349 B
Nix

{ config, pkgs, ... }:
let
mkIf = pkgs.lib.mkIf;
bluetooth-enable = config.hardware.bluetooth.enable;
in {
sound.enable = true;
hardware = {
pulseaudio = {
enable = true;
package = mkIf bluetooth-enable pkgs.pulseaudioFull;
};
pulseaudio.support32Bit = true;
};
systemd.user.services.pulseaudio.enable = true;
}