19 lines
421 B
Nix
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 ];
|
|
};
|
|
}
|