Add jellyfin container configuration
This commit is contained in:
@ -25,6 +25,54 @@ with lib.my;
|
||||
|
||||
system.stateVersion = "22.11";
|
||||
|
||||
systemd.services.vps1-tunnel = {
|
||||
enable = true;
|
||||
description = "vps1.mesh.vimium.net SSH tunnel";
|
||||
after = [
|
||||
"network-online.target"
|
||||
"podman-jellyfin.service"
|
||||
];
|
||||
wants = [ "network-online.target" ];
|
||||
serviceConfig = {
|
||||
Type=Simple;
|
||||
ExecStart='''
|
||||
ssh \
|
||||
-NT
|
||||
-o ExitOnForwardFailure=yes \
|
||||
-o ServerAliveInterval=60 \
|
||||
-o TCPKeepAlive=no \
|
||||
-i %h/.ssh/id_jellyfin \
|
||||
-R localhost:8096:localhost:8096 \
|
||||
jellyfin@vps1.mesh.vimium.net
|
||||
''';
|
||||
Restart=on-failure;
|
||||
};
|
||||
wantedBy = [ "default.target" ];
|
||||
};
|
||||
|
||||
virtualisation.podman.enable = true;
|
||||
virtualisation.oci-containers.containers = {
|
||||
jellyfin = {
|
||||
user = "1000:1000";
|
||||
image = "docker.io/jellyfin/jellyfin:10.8.10";
|
||||
autoStart = true;
|
||||
ports = "8096:8096/tcp";
|
||||
volumes = [
|
||||
"jellyfin-cache:/cache:Z"
|
||||
"jellyfin-config:/config:Z"
|
||||
];
|
||||
extraOptions = [
|
||||
"--detach"
|
||||
"--label io.containers.autoupdate=registry"
|
||||
"--privileged"
|
||||
"--userns keep-id"
|
||||
"--group-add=989"
|
||||
"--mount type=bind,source=/mnt/library,target=/library"
|
||||
"--device /dev/dri:/dev/dri"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
modules = {
|
||||
security = {
|
||||
gpg.enable = true;
|
||||
|
Reference in New Issue
Block a user