Simon Bruder
58e6cad052
Nixpkgs now treats it as data, so it is not set in the module. As an alternative, hardware volume is disabled globally.
33 lines
653 B
Nix
33 lines
653 B
Nix
{ config, lib, modulesPath, pkgs, ... }:
|
|
let
|
|
bluetoothSupport = config.sbruder.full;
|
|
in
|
|
lib.mkIf config.sbruder.gui.enable {
|
|
sound.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
pulse.enable = true;
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
media-session = {
|
|
config = {
|
|
bluez-monitor = {
|
|
"bluez5.enable-hw-volume" = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pavucontrol
|
|
pulseaudio # pacmd and pactl
|
|
];
|
|
|
|
hardware.bluetooth.enable = lib.mkDefault bluetoothSupport;
|
|
services.blueman.enable = lib.mkDefault bluetoothSupport;
|
|
}
|