Regenerated

This commit is contained in:
2026-03-23 07:10:28 +00:00
parent 990ee7c2b6
commit d79d98ebdb
33 changed files with 1 additions and 1420 deletions
@@ -1,41 +0,0 @@
{ config, pkgs, ... }:
{
############################
# Bluetooth hardware
############################
hardware.bluetooth = {
enable = true; # turn on the daemon
powerOnBoot = true; # auto-power on
packages = [ pkgs.bluez ];
# extra config for the Bluetooth service itself
extraConfig = ''
AutoEnable=true
DiscoverableTimeout=0
PairableTimeout=0
'';
};
############################
# PipeWire for Bluetooth audio
############################
services.pipewire = {
enable = true; # enable the PipeWire daemon
# No raw extraConfig needed — Bluetooth audio is automatically handled
configPackages = [
pkgs.pipewire
pkgs.pipewire-pulse
pkgs.pipewire-alsa
pkgs.pipewire-jack
pkgs.pipewire-media-session
];
};
############################
# GUI Bluetooth manager
############################
environment.systemPackages = with pkgs; [
blueman # graphical Bluetooth manager
];
}