1
1
Fork 0
nixos/options/custom/services/blueman-applet.nix

16 lines
345 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
cfg = config.custom.services.blueman-applet;
in
{
options.custom.services.blueman-applet.enable = mkOption { default = false; };
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
# https://github.com/blueman-project/blueman
services.blueman-applet.enable = true;
};
}