t14_legacy_config/home/systemd/default.nix

15 lines
352 B
Nix
Raw Normal View History

2022-08-26 06:50:38 +02:00
{ lib, pkgs, ... } :
with lib;
{
systemd.user.tmpfiles.rules = [
"d %t/tmp 0700 fabian fabian 24h"
];
2023-04-27 03:04:46 +02:00
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" ];
};
2022-08-26 06:50:38 +02:00
}