Files

15 lines
284 B
Nix
Raw Permalink Normal View History

2025-02-02 14:57:36 +03:00
{ config, lib, ... }: {
hardware.bluetooth =
lib.mkIf config.hardware.bluetooth.enable {
2024-04-17 08:15:16 +05:00
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
2024-04-17 08:51:23 +05:00
services.blueman.enable = true;
2024-04-17 08:15:16 +05:00
}