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