nix-config/modules/nixos-modules/server/jellyfin.nix

61 lines
1.6 KiB
Nix

{
lib,
pkgs,
config,
...
}: let
jellyfinPort = 8096;
in {
options.host.jellyfin = {
enable = lib.mkEnableOption "should jellyfin be enabled on this computer";
subdomain = lib.mkOption {
type = lib.types.str;
description = "subdomain of base domain that jellyfin will be hosted at";
default = "jellyfin";
};
};
config = lib.mkIf config.host.jellyfin.enable (
lib.mkMerge [
{
services.jellyfin.enable = true;
host.reverse_proxy.subdomains.${config.host.jellyfin.subdomain} = {
target = "http://localhost:${toString jellyfinPort}";
};
environment.systemPackages = [
pkgs.jellyfin
pkgs.jellyfin-web
pkgs.jellyfin-ffmpeg
];
}
(lib.mkIf config.host.impermanence.enable {
# TODO: add an assertion here that directories matches jellyfin directories
environment.persistence."/persist/system/jellyfin" = {
enable = true;
hideMounts = true;
directories = [
"/var/lib/jellyfin"
"/var/cache/jellyfin"
];
};
host.storage.pool.extraDatasets = [
{
# sops age key needs to be available to pre persist for user generation
"persist/system/jellyfin" = {
type = "zfs_fs";
mountpoint = "/persist/system/jellyfin";
options = {
atime = "off";
relatime = "off";
canmount = "on";
};
};
}
];
})
]
);
}