refactor(fuchsia): reorganize audio and bluetooth configuration

Separated PipeWire audio configuration from bluetooth hardware settings for
better logical organization. Moved bluetooth config to hardware-configuration.nix
alongside kernel module workarounds (disable_ertm, iwlwifi power_save).

Also added documentation for permittedInsecurePackages in global config and
updated flake dependencies.
This commit is contained in:
♥ Minnie ♥ 2025-11-12 14:40:49 +08:00
parent 9a26436dec
commit c1d4fa5255
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
6 changed files with 55 additions and 33 deletions

View file

@ -1,18 +1,19 @@
{ pkgs, ... }: {
# Realtime scheduler
# Realtime scheduler for low-latency audio
security.rtkit.enable = true;
# Sound server
# PipeWire sound server
services.pipewire = {
enable = true;
# Enable components
# Enable ALSA, PulseAudio compatibility, and WirePlumber session manager
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
};
# Sound mixer
# Audio control utilities
environment.systemPackages = with pkgs; [
pulsemixer
];

View file

@ -1,11 +1,11 @@
{...}: {
imports = [
./amdgpu-clocks
./audio
./borgbackup
./flatpak
./internet-sharing
./libinput
./pipewire
./printing
./snapper
./ssh