Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
439 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
# blueman service
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.blueman;
in
{
###### interface
options = {
services.blueman = {
enable = lib.mkEnableOption "blueman, a bluetooth manager";
};
};
###### implementation
config = lib.mkIf cfg.enable {
environment.systemPackages = [ pkgs.blueman ];
services.dbus.packages = [ pkgs.blueman ];
systemd.packages = [ pkgs.blueman ];
};
}