Files
nixos-config/home/common/features/bluetooth.nix
T
Miguel Palhas 907321cc59 bluetooth
2024-10-06 16:51:29 +01:00

15 lines
297 B
Nix

{ pkgs, ... }:
{
services.blueman.enable = true;
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [
"network.target"
"sound.target"
];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
}