mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
7 lines
228 B
Nix
7 lines
228 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselmodules.blueman-applet = lib.mkEnableOption "enable blueman applet for tray";
|
|
config = lib.mkIf config.swarselmodules.blueman-applet {
|
|
services.blueman-applet.enable = true;
|
|
};
|
|
}
|