2024-08-09 11:50:18 +00:00
|
|
|
{
|
2024-11-26 08:27:14 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
|
2024-12-10 21:40:33 +00:00
|
|
|
with lib;
|
|
|
|
|
2024-11-26 08:27:14 +00:00
|
|
|
{
|
2024-12-10 21:40:33 +00:00
|
|
|
options.features.cli.bluetuith.enable = mkEnableOption "Enable bluetuith";
|
2024-11-26 08:27:14 +00:00
|
|
|
|
2024-12-10 21:40:33 +00:00
|
|
|
config = mkIf config.features.cli.bluetuith.enable {
|
2024-11-26 08:27:14 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
bluetuith
|
|
|
|
];
|
|
|
|
|
|
|
|
xdg.configFile."bluetuith/bluetuith.conf" = {
|
|
|
|
text = ''
|
|
|
|
{
|
|
|
|
adapter: ""
|
|
|
|
adapter-states: ""
|
|
|
|
connect-bdaddr: ""
|
|
|
|
gsm-apn: ""
|
|
|
|
gsm-number: ""
|
|
|
|
keybindings: {
|
|
|
|
NavigateDown: j
|
|
|
|
NavigateUp: k
|
|
|
|
}
|
|
|
|
receive-dir: ""
|
|
|
|
theme: {}
|
2024-08-09 11:50:18 +00:00
|
|
|
}
|
2024-11-26 08:27:14 +00:00
|
|
|
'';
|
|
|
|
};
|
2024-08-09 11:50:18 +00:00
|
|
|
};
|
|
|
|
}
|