mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
14 lines
242 B
Nix
14 lines
242 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
package = pkgs.bluezFull;
|
|
settings = {
|
|
General = {
|
|
Enable = "Source,Sink,Media,Socket";
|
|
};
|
|
};
|
|
};
|
|
services.blueman.enable = true;
|
|
}
|