6 lines
171 B
Nix
6 lines
171 B
Nix
{ nixosConfig, ... }:
|
|
{
|
|
# Enable blueman-applet when the machine has bluetooth enabled
|
|
services.blueman-applet.enable = nixosConfig.services.blueman.enable == true;
|
|
}
|