feat: several updates

This commit is contained in:
Xavier Morel
2025-12-09 14:35:20 +01:00
parent aec2e5bf63
commit a78704f30f
36 changed files with 826 additions and 150 deletions

View File

@@ -16,38 +16,18 @@ in
};
system = {
port = 8096; # jellyfin default http
additionalPorts = [ 5055 ]; # jellyseerr default
services = {
jellyfin = {
enable = true;
openFirewall = true;
# TODO: Manual bind-mount in proxmox
dataDir = "/mnt/nas/app-data/jellyfin";
logDir = "/var/log/jellyfin";
user = "root";
group = "root";
};
jellyseerr = {
enable = true;
openFirewall = true;
# TODO: Same...
configDir = "/mnt/nas/app-data/jellyseerr";
};
};
importConfig = [
../config/media-jellyfin.nix
];
};
logging = {
enable = true;
metricsEnable = true;
journalLoggers = {
jellyfin = "";
};
};
private = true;
auth = true;
otherDomains = [
{
subdomain = "flix";
port = 5055;
private = true;
auth = true;
}
];
};
}