nixos-config/modules/bluetooth/default.nix

16 lines
273 B
Nix
Raw Normal View History

2024-02-05 11:46:52 +01:00
{ config, lib, ... }:
with lib;
let
2022-03-01 22:19:03 +01:00
cfg = config.eboskma.bluetooth;
in
{
2021-11-22 08:04:54 +01:00
options.eboskma.bluetooth = {
enable = mkEnableOption "activate bluetooth";
};
2022-05-03 18:17:38 +02:00
config = mkIf cfg.enable {
2021-11-22 08:04:54 +01:00
hardware.bluetooth.enable = true;
services.blueman.enable = true;
};
}