Disable bluetooth hardware volume
This commit is contained in:
parent
9b78d9f4fd
commit
4756dceb42
1 changed files with 10 additions and 0 deletions
|
@ -11,6 +11,9 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/virtualization/docker.nix
|
../../modules/virtualization/docker.nix
|
||||||
../../modules/virtualization/qemu.nix
|
../../modules/virtualization/qemu.nix
|
||||||
|
../../modules/secrets/gnome-keyring.nix
|
||||||
|
../../modules/secrets/gpg.nix
|
||||||
|
../../modules/services/openvpn.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
@ -60,6 +63,13 @@
|
||||||
services.tailscale.useRoutingFeatures = "client";
|
services.tailscale.useRoutingFeatures = "client";
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
|
etc = {
|
||||||
|
"wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = ''
|
||||||
|
bluez_monitor.properties = {
|
||||||
|
["bluez5.enable-hw-volume"] = false,
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
systemPackages = with pkgs;
|
systemPackages = with pkgs;
|
||||||
[
|
[
|
||||||
tailscale
|
tailscale
|
||||||
|
|
Loading…
Reference in a new issue