config.nix/modules/connectivity/bluetooth/default.nix
2025-12-22 17:43:25 +01: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
];
};
}