dotfiles/.config/nixos/shared/bluetooth.nix

10 lines
173 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
hardware.bluetooth.enable = true;
hardware.bluetooth.settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
}