Remove unused packages

This commit is contained in:
Oliver Davies 2024-12-30 18:02:52 +00:00
parent 815ec0f429
commit ae456f3317
9 changed files with 0 additions and 88 deletions

View file

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