From dbc2ec790c954ba684d90c5bf7b4a2d13a0d7cdf Mon Sep 17 00:00:00 2001 From: Alexandre Date: Thu, 5 Mar 2026 22:31:31 +0100 Subject: [PATCH] Added blueman --- hosts/framework/configuration.nix | 13 +++++++++++++ modules/nixos/desktop/bluetooth.nix | 4 +++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/hosts/framework/configuration.nix b/hosts/framework/configuration.nix index 0e60d47..0995380 100644 --- a/hosts/framework/configuration.nix +++ b/hosts/framework/configuration.nix @@ -12,6 +12,19 @@ }; }; + services = { + pipewire = { + enable = true; + alsa = { + enable = true; + support32Bit = true; + }; + pulse = { + enable = true; + }; + }; + }; + # Flatpak #services = { # flatpak = { diff --git a/modules/nixos/desktop/bluetooth.nix b/modules/nixos/desktop/bluetooth.nix index b4156f1..7b57fb9 100644 --- a/modules/nixos/desktop/bluetooth.nix +++ b/modules/nixos/desktop/bluetooth.nix @@ -9,6 +9,8 @@ Policy = { AutoEnable = true; }; - }: + }; }; + + services.blueman.enable = true; }