32 lines
647 B
Nix
32 lines
647 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (config.grimmShared)
|
|
enable
|
|
network
|
|
graphical
|
|
sound
|
|
;
|
|
in
|
|
{
|
|
config = lib.mkIf (enable && network && config.hardware.bluetooth.enable) {
|
|
services.blueman.enable = lib.mkIf graphical true;
|
|
|
|
environment.systemPackages = [ pkgs.bluetuith ] ++ lib.optional sound.enable pkgs.bluez;
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|