mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
16 lines
346 B
Nix
16 lines
346 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true; # enables support for Bluetooth
|
|
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
|
settings = {
|
|
General = {
|
|
Enable = "Source,Sink,Media,Socket";
|
|
Experimental = true;
|
|
};
|
|
};
|
|
|
|
};
|
|
services.blueman.enable = true;
|
|
|
|
}
|