nixos-config/modules/bluetooth/default.nix
Erwin Boskma 4cd0f83ce8
Some checks failed
/ check (push) Failing after 2m46s
Run nixfmt
2024-02-05 11:46:52 +01:00

15 lines
273 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.eboskma.bluetooth;
in
{
options.eboskma.bluetooth = {
enable = mkEnableOption "activate bluetooth";
};
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
};
}