14 lines
259 B
Nix
14 lines
259 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
];
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.settings = {
|
|
General = {
|
|
Enable = "Source,Sink,Media,Socket";
|
|
};
|
|
};
|
|
|
|
services.blueman.enable = true;
|
|
}
|