Extract a bluetooth mixin

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent a5d93cc616
commit a4cacfd4de
7 changed files with 12 additions and 24 deletions

View file

@ -0,0 +1,33 @@
{ pkgs, ... }:
{
hardware.bluetooth.enable = true;
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
bluetuith
];
home-manager.users.opdavies = {
xdg.configFile."bluetuith/bluetuith.conf" = {
text = ''
{
adapter: ""
adapter-states: ""
connect-bdaddr: ""
gsm-apn: ""
gsm-number: ""
keybindings: {
NavigateDown: j
NavigateUp: k
}
receive-dir: ""
theme: {}
}
'';
};
};
}