37 lines
614 B
Nix
37 lines
614 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options.features.cli.bluetuith.enable = mkEnableOption "Enable bluetuith";
|
||
|
|
||
|
config = mkIf config.features.cli.bluetuith.enable {
|
||
|
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: {}
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|