15 lines
352 B
Nix
15 lines
352 B
Nix
{ lib, pkgs, ... } :
|
|
with lib;
|
|
{
|
|
systemd.user.tmpfiles.rules = [
|
|
"d %t/tmp 0700 fabian fabian 24h"
|
|
];
|
|
|
|
systemd.user.services.mpris-proxy = {
|
|
Unit.Description = "Mpris proxy";
|
|
Unit.After = [ "network.target" "sound.target" ];
|
|
Service.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
}
|