Enable Bluetooth (bluez, blueman)

This commit is contained in:
Martin Berg Alstad 2025-03-03 21:46:38 +01:00
parent 223545ba1d
commit 1d20ef52a8
Signed by: martials
GPG Key ID: 848D71DE0590C199
2 changed files with 15 additions and 0 deletions

14
modules/bluetooth.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.bluez
];
hardware.bluetooth = {
enable = true;
powerOnBoot = true; # powers up the default Bluetooth controller on boot
};
services.blueman.enable = true;
}

View File

@ -1,6 +1,7 @@
{
imports = [
./battery.nix
./bluetooth.nix
./development.nix
./fonts.nix
./gnome