Files
nixos-config/modules/nixos/bluetooth.nix
2025-09-23 00:06:24 +02:00

32 lines
390 B
Nix

{
config,
lib,
pkgs,
...
}:
{
environment.systemPackages = [
pkgs.bluez
# bluez-qt
# gnome.gnome-control-center
pkgs.gnome-bluetooth
];
services.dbus.packages = with pkgs; [
gnome-bluetooth
bluez
];
users.users.remy.extraGroups = [
"networkmanager"
];
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
}