config.nix/home/modules/connectivity/bluetooth/default.nix
2026-03-30 22:03:03 +02:00

20 lines
258 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options = {
bluetooth = {
enable = lib.mkEnableOption "enable bluetooth";
};
};
config = lib.mkIf config.bluetooth.enable {
home.packages = with pkgs; [
bluez
bluetuith
];
};
}