- Update `flake.lock` with new `nix-secrets` revision - Modify `arrstack.nix`: - Change secret paths for OpenVPN credentials - Add new ports and capabilities for gluetun service - Add qbittorrent service with environment variables - Rename project from jellyfin to arrstack - Update `jellyfin.nix` to set container name - Include `jellyfin.nix` and `arrstack.nix` in `default.nix` - Adjust GDK scaling variables in `default.nix` for better display - Improve `justfile`: - Pull latest changes before editing SOPS file - Use timestamped commit messages for auto-commits
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{
|
|
services.restic.backups = {
|
|
daily = {
|
|
paths = [
|
|
"/srv/media-server/jellyfin"
|
|
];
|
|
exclude = [
|
|
];
|
|
};
|
|
};
|
|
|
|
virtualisation.arion = {
|
|
backend = "podman-socket";
|
|
projects.jellyfin = {
|
|
settings = {
|
|
services.jellyfin.service = {
|
|
ports = [
|
|
"8096:8096"
|
|
];
|
|
container_name = "jellyfin";
|
|
image = "lscr.io/linuxserver/jellyfin:latest";
|
|
restart = "always";
|
|
volumes = [
|
|
"/srv/media-server/jellyfin/config:/config"
|
|
"/media/media/tv:/data/tvshows"
|
|
"/media/media/movies:/data/movies"
|
|
"/media/media/music/music_data:/data/music"
|
|
"/media/media/youtube:/data/youtube"
|
|
"/media/media/podcasts:/data/podcasts"
|
|
"/srv/media-server/jellyfin/config/custom-cont-init.d:/custom-cont-init.d:ro"
|
|
];
|
|
environment = {
|
|
PUID = "1000";
|
|
PGID = "1000";
|
|
DOCKER_MODS="linuxserver/mods:jellyfin-opencl-intel";
|
|
};
|
|
devices = ["/dev/dri:/dev/dri"];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|