feat(laozi/optional): bluetooth activate

This commit is contained in:
madmin 2024-09-13 21:02:44 +02:00
parent 047dd40467
commit 528a813b93
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ pkgs, ... }: {
programs.bluez = {
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";
};
}