alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
update kodi sync queue
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
3492e69d
3492e69d2980a6ae0ef113242f08b03c4898aa26
parent
48c5ae99
48c5ae99e79daffadde14c3a1e21ef2130189d4c
change-id
qwnkzpms
qwnkzpmsorzuyvkuvpkxkkslzrlmrpvu
+8
-6
1 changed file
Expand all
Collapse all
Unified
Split
hosts
mira
configuration.nix
+8
-6
hosts/mira/configuration.nix
Reviewed
···
145
145
};
146
146
147
147
# Install Kodi Sync Queue plugin into Jellyfin
148
148
-
systemd.services.jellyfin.serviceConfig.ExecStartPre = let
149
149
-
pluginDir = "/data/.state/nixarr/jellyfin/data/plugins/Kodi Sync Queue/15.0.0.0";
150
150
-
in pkgs.writeShellScript "install-jellyfin-plugins" ''
151
151
-
mkdir -p "${pluginDir}"
152
152
-
cp -f ${jellyfinKodiSyncQueue}/*.dll ${jellyfinKodiSyncQueue}/meta.json "${pluginDir}/"
153
153
-
'';
148
148
+
systemd.services.jellyfin.serviceConfig.ExecStartPre =
149
149
+
let
150
150
+
pluginDir = "/data/.state/nixarr/jellyfin/data/plugins/Kodi Sync Queue/15.0.0.0";
151
151
+
in
152
152
+
pkgs.writeShellScript "install-jellyfin-plugins" ''
153
153
+
mkdir -p "${pluginDir}"
154
154
+
cp -f ${jellyfinKodiSyncQueue}/*.dll ${jellyfinKodiSyncQueue}/meta.json "${pluginDir}/"
155
155
+
'';
154
156
155
157
# MQTT broker for Home Assistant (Tasmota devices, Frigate)
156
158
services.mosquitto = {