nixos/hardware/bluetooth/default.nix
2023-05-10 09:23:43 +02:00

20 lines
317 B
Nix

{ ... }:
{
# Blueooth support in general
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
# Blueman applet
services.blueman.enable = true;
systemd.user.services.blueman-applet = {
partOf = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
};
}