nix-config/modules/mixins/bluetooth.nix

34 lines
564 B
Nix
Raw Normal View History

2025-04-05 09:00:00 +01:00
{ pkgs, ... }:
2025-02-21 09:58:14 +00:00
{
2025-04-05 09:00:00 +01:00
hardware.bluetooth.enable = true;
services.blueman.enable = true;
2025-02-21 09:58:14 +00:00
2025-04-05 09:00:00 +01:00
environment.systemPackages = with pkgs; [
bluetuith
];
2025-02-21 09:58:14 +00:00
2025-04-05 09:00:00 +01:00
home-manager.users.opdavies = {
2025-02-21 09:58:14 +00:00
xdg.configFile."bluetuith/bluetuith.conf" = {
text = ''
{
adapter: ""
adapter-states: ""
connect-bdaddr: ""
gsm-apn: ""
gsm-number: ""
2025-04-05 09:00:00 +01:00
2025-02-21 09:58:14 +00:00
keybindings: {
NavigateDown: j
NavigateUp: k
}
2025-04-05 09:00:00 +01:00
2025-02-21 09:58:14 +00:00
receive-dir: ""
theme: {}
}
'';
};
};
}