Regenerated

This commit is contained in:
2026-03-23 07:09:29 +00:00
parent acd387868d
commit 5e5111bfa2
33 changed files with 18 additions and 1419 deletions
+18 -9
View File
@@ -537,11 +537,15 @@ This sets the bluetooth implementation
{ config, pkgs, ... }:
{
# Enable Bluetooth hardware and daemon
############################
# Bluetooth hardware
############################
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
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
@@ -549,11 +553,12 @@ This sets the bluetooth implementation
'';
};
# Enable PipeWire and Bluetooth audio
############################
# PipeWire for Bluetooth audio
############################
services.pipewire = {
enable = true;
# This is now a list of packages to configure
enable = true; # enable the PipeWire daemon
# No raw extraConfig needed — Bluetooth audio is automatically handled
configPackages = [
pkgs.pipewire
pkgs.pipewire-pulse
@@ -563,8 +568,12 @@ This sets the bluetooth implementation
];
};
# Optional graphical manager
environment.systemPackages = [ pkgs.blueman ];
############################
# GUI Bluetooth manager
############################
environment.systemPackages = with pkgs; [
blueman # graphical Bluetooth manager
];
}
#+END_SRC