small changes

This commit is contained in:
Jurn Wubben 2025-03-03 18:14:56 +01:00
parent 9bf493e4ba
commit 20891b3e14
3 changed files with 19 additions and 3 deletions

View file

@ -1,6 +1,20 @@
{pkgs, ...}: {
# {
# lib,
# config,
# ...
# }: {
# options.niksos.bluetooth = lib.mkEnableOption;
#
# config = lib.mkIf config.niksos.bluetooth {
# hardware.bluetooth = {
# enable = true;
# input.General.ClassicBondedOnly = false;
# };
# };
# }
{
hardware.bluetooth = {
enable = true;
input.General.ClassicBondedOnly = false;
};
environment.systemPackages = [pkgs.bluetui];
}