Re-add bluetuith

This commit is contained in:
Oliver Davies 2025-02-21 09:58:14 +00:00
parent 9177cb3f9d
commit 8df5e6b623
3 changed files with 38 additions and 0 deletions

View file

@ -3,6 +3,7 @@
{
features = {
cli = {
bluetuith.enable = true;
direnv.enable = true;
notes = {

View file

@ -0,0 +1,36 @@
{
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: {}
}
'';
};
};
}

View file

@ -3,6 +3,7 @@
{
imports = [
./bin.nix
./bluetuith.nix
./direnv.nix
./fzf.nix
./git.nix