Files
nixos/Droidnix/generated/modules/traveldroid/system/bluetooth.nix
T
2026-04-11 16:57:38 +02:00

17 lines
404 B
Nix

# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ lib, config, pkgs, home-manager, ... }:
let
username = config.defaultUser or "henrov";
in
{
############################
# Bluetooth daemon
############################
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
package = pkgs.bluez;
};
}