mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 13:42:05 +00:00
10 lines
173 B
Nix
10 lines
173 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
hardware.bluetooth.enable = true;
|
||
|
hardware.bluetooth.settings = {
|
||
|
General = {
|
||
|
Enable = "Source,Sink,Media,Socket";
|
||
|
};
|
||
|
};
|
||
|
}
|