nix-config/modules/nixos/core/bluetooth.nix

17 lines
255 B
Nix
Raw Permalink Normal View History

{ config, lib, ... }:
with lib;
let
2025-05-03 16:50:27 +01:00
cfg = config.core.bluetooth;
in
{
2025-05-03 16:50:27 +01:00
options.core.bluetooth.enable = mkEnableOption "Enable bluetooth";
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
};
}