grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / desktops / blueman.nix
blob4f02d288e2dfc2af8340746479b5e9c826718611
1 # blueman service
2 { config, lib, pkgs, ... }:
3 let
4   cfg = config.services.blueman;
5 in {
6   ###### interface
7   options = {
8     services.blueman = {
9       enable = lib.mkEnableOption "blueman, a bluetooth manager";
10     };
11   };
13   ###### implementation
14   config = lib.mkIf cfg.enable {
16     environment.systemPackages = [ pkgs.blueman ];
18     services.dbus.packages = [ pkgs.blueman ];
20     systemd.packages = [ pkgs.blueman ];
21   };