feat(package): hemar: conected to nix config

This commit is contained in:
2025-11-24 14:20:03 +00:00
parent 278a8386d7
commit 0205b9782c
16 changed files with 270 additions and 59 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/dash
init_plex() {
local backend
backend=${1:?}
case "$backend" in
env)
. ${WORKSPACE}/src/plex/backend/env_var.sh
;;
file)
. ${WORKSPACE}/src/plex/backend/file.sh
;;
yq-go)
. ${WORKSPACE}/src/plex/backend/yq-go.sh
;;
*)
exit 1
;;
esac
}