20 lines
367 B
Nix
20 lines
367 B
Nix
# {{{autogen}}}
|
|
{ lib, config, pkgs, home-manager, ... }:
|
|
|
|
let
|
|
username = config.defaultUser or "henrov";
|
|
in
|
|
{
|
|
|
|
|
|
############################
|
|
# Bluetooth daemon
|
|
############################
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
package = pkgs.bluez;
|
|
};
|
|
environment.systemPackages = with pkgs; [ blueman ];
|
|
}
|