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

19 lines
421 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;
packages = with pkgs; [ bluez blueman ];
};
}