mirror of
https://github.com/nix-community/home-manager
synced 2024-11-15 23:59:45 +01:00
blueman-applet: minor cleanup of enable option
In particular use proper DocBook format in description.
This commit is contained in:
parent
a5d3d6f665
commit
8d14ffbe88
1 changed files with 12 additions and 9 deletions
|
@ -5,17 +5,20 @@ with lib;
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
services.blueman-applet = {
|
services.blueman-applet = {
|
||||||
enable = mkEnableOption ''
|
enable = mkEnableOption "" // {
|
||||||
Blueman applet.
|
description = ''
|
||||||
|
Whether to enable the Blueman applet.
|
||||||
Note, for the applet to work, 'blueman' service should be enabled system-wide
|
</para><para>
|
||||||
since it requires running 'blueman-mechanism' service activated.
|
Note, for the applet to work, the 'blueman' service should
|
||||||
You can enable it in system configuration:
|
be enabled system-wide. You can enable it in the system
|
||||||
|
configuration using
|
||||||
|
<programlisting language="nix">
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
</programlisting>
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
config = mkIf config.services.blueman-applet.enable {
|
config = mkIf config.services.blueman-applet.enable {
|
||||||
systemd.user.services.blueman-applet = {
|
systemd.user.services.blueman-applet = {
|
||||||
|
|
Loading…
Reference in a new issue