nixos/hardware/bluetooth/default.nix

20 lines
317 B
Nix
Raw Normal View History

2022-11-03 13:13:36 +01:00
{ ... }:
2021-11-24 20:54:11 +01:00
{
# Blueooth support in general
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
# Blueman applet
services.blueman.enable = true;
systemd.user.services.blueman-applet = {
2021-11-24 22:17:07 +01:00
partOf = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
};
2021-11-24 20:54:11 +01:00
}