b(rowser)(luetooth)

This commit is contained in:
martyTF 2025-12-22 17:43:18 +01:00
parent 2ca81cd60e
commit d127bddb0d
11 changed files with 30 additions and 6 deletions

View file

@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
...
}:
{
options = {
bluetooth = {
enable = lib.mkEnableOption "enable bluetooth";
};
};
config = lib.mkIf config.bluetooth.enable {
home.packages = with pkgs; [
bluez
bluetuith
];
};
}