1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00
home-manager/modules/services/blueman-applet.nix

37 lines
953 B
Nix
Raw Normal View History

2017-09-12 16:26:52 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
options = {
services.blueman-applet = {
enable = mkEnableOption "" // {
description = ''
Whether to enable the Blueman applet.
</para><para>
Note, for the applet to work, the 'blueman' service should
be enabled system-wide. You can enable it in the system
configuration using
<programlisting language="nix">
services.blueman.enable = true;
</programlisting>
'';
};
2017-09-12 16:26:52 +02:00
};
};
config = mkIf config.services.blueman-applet.enable {
systemd.user.services.blueman-applet = {
2020-02-02 00:39:17 +01:00
Unit = {
Description = "Blueman applet";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
2017-09-12 16:26:52 +02:00
2020-02-02 00:39:17 +01:00
Install = { WantedBy = [ "graphical-session.target" ]; };
2017-09-12 16:26:52 +02:00
2020-02-02 00:39:17 +01:00
Service = { ExecStart = "${pkgs.blueman}/bin/blueman-applet"; };
2017-09-12 16:26:52 +02:00
};
};
}