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

16 lines
281 B
Nix
Raw Normal View History

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