From fa963e4179adbfc2c06dba79998318efe98ab27b Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 9 Dec 2023 01:40:50 -0500 Subject: [PATCH] tsuki: remove jellyfin-rpc --- hosts/tsuki/services/jellyfin-rpc.nix | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 hosts/tsuki/services/jellyfin-rpc.nix diff --git a/hosts/tsuki/services/jellyfin-rpc.nix b/hosts/tsuki/services/jellyfin-rpc.nix deleted file mode 100644 index c1300ba..0000000 --- a/hosts/tsuki/services/jellyfin-rpc.nix +++ /dev/null @@ -1,16 +0,0 @@ -_: { - systemd.services.jellyfin-rpc = { - enable = true; - wantedBy = [ - "multi-user.target" - ]; - description = "Displays the content you're currently watching on Discord!"; - - serviceConfig = { - User = "root"; - ExecStart = "/nix/store/gfwcai4i1cl3w8lbli4dsg0z369z2fn4-user-environment/bin/jellyfin-rpc --config /home/notoh/.config/jellyfin-rpc/main.json"; - Restart = "always"; - RestartSec = 30; - }; - }; -}