Files
2026-03-21 20:01:50 +00:00

19 lines
416 B
Nix

{ ... }:
{
flake.nixosModules.bluetooth = { config, lib, pkgs, ... }:
let
cfg = config.mySystem.hardware.bluetooth;
in {
options.mySystem.hardware.bluetooth.enable = lib.mkEnableOption "Bluetooth Support";
config = lib.mkIf cfg.enable {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
environment.systemPackages = [
pkgs.bluetui
];
};
};
}