dotfiles/.config/nixos/shared/desktop/bluetooth.nix
2025-01-08 22:11:59 +08:00

10 lines
No EOL
173 B
Nix

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