bluetooth

This commit is contained in:
Miguel Palhas
2024-10-06 16:51:29 +01:00
parent 08fb398ce2
commit 907321cc59
7 changed files with 40 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
{ 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";
};
}