2024-05-07 23:31:41 +02:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2024-04-10 16:51:28 +02:00
|
|
|
let
|
2024-03-24 16:59:47 +01:00
|
|
|
cfg = config.grimmShared;
|
2024-04-10 16:51:28 +02:00
|
|
|
in
|
|
|
|
{
|
2024-05-07 23:31:41 +02:00
|
|
|
config =
|
|
|
|
with cfg;
|
|
|
|
lib.mkIf (enable && network && config.hardware.bluetooth.enable) {
|
|
|
|
services.blueman.enable = lib.mkIf graphical true;
|
2024-04-10 16:51:28 +02:00
|
|
|
|
2024-05-07 23:31:41 +02:00
|
|
|
environment.systemPackages = with pkgs; [ bluetuith ] ++ lib.optional sound.enable pkgs.bluez;
|
2024-04-11 23:12:08 +02:00
|
|
|
|
2024-05-07 23:31:41 +02:00
|
|
|
systemd.user.services.mpris-proxy = lib.mkIf sound.enable {
|
|
|
|
description = "Mpris proxy";
|
|
|
|
after = [
|
|
|
|
"network.target"
|
|
|
|
"sound.target"
|
|
|
|
];
|
|
|
|
wantedBy = [ "default.target" ];
|
|
|
|
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
|
|
|
|
};
|
2024-04-11 23:12:08 +02:00
|
|
|
};
|
2024-03-24 16:59:47 +01:00
|
|
|
}
|