Compare commits
No commits in common. "9616c5cce7682db495ea24235aba137d5c2af9fc" and "d67c53a2786c4f2ad9e7bb693c12da27b1447db2" have entirely different histories.
9616c5cce7
...
d67c53a278
2 changed files with 20 additions and 1 deletions
|
|
@ -376,7 +376,11 @@ in
|
|||
# Make htop window bigger
|
||||
{
|
||||
criteria = { title = "^htop$"; };
|
||||
command = "resize set 80 ppt 80 ppt, move position center";
|
||||
command = "resize set 80 ppt 80 ppt";
|
||||
}
|
||||
{
|
||||
criteria = { title = "^htop$"; };
|
||||
command = "move position center";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -25,6 +25,21 @@ in
|
|||
package = pkgs.pulseaudioFull;
|
||||
};
|
||||
|
||||
# FIXME: waiting for NixOS module configuration
|
||||
environment.etc = {
|
||||
"wireplumber/bluetooth.lua.d/50-bluez-config.lua".text = ''
|
||||
bluez_monitor.properties = {
|
||||
["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
|
||||
-- mSBC provides better audio + microphone
|
||||
["bluez5.enable-msbc"] = true,
|
||||
-- SBC XQ provides better audio
|
||||
["bluez5.enable-sbc-xq"] = true,
|
||||
-- Hardware volume control
|
||||
["bluez5.enable-hw-volume"] = true,
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
services.pipewire = {
|
||||
media-session.config.bluez-monitor.rules = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue