We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018fd31 commit a6bbb1aCopy full SHA for a6bbb1a
2 files changed
modules/services/default.nix
@@ -3,6 +3,18 @@
3
imports = [
4
./noizdns.nix
5
];
6
+ systemd.user.services.mprisence = {
7
+ description = "Discord Rich Presence for MPRIS";
8
+ unitConfig = {
9
+ Requires = [ "dbus.socket" ];
10
+ After = [ "dbus.socket" "graphical-session.target" ];
11
+ };
12
+ serviceConfig = {
13
+ ExecStart = "${pkgs.mprisence}/bin/mprisence";
14
+ Restart = "always";
15
16
+ wantedBy = [ "default.target" ];
17
18
services = {
19
ananicy = {
20
enable = true;
modules/system/preservation.nix
@@ -113,6 +113,7 @@ _: {
113
".librewolf"
114
".password-store"
115
".local/state/wireplumber"
116
+ ".config/mprisence"
117
".config/Antigravity"
118
".config/vesktop"
119
".config/Element"
0 commit comments