updated jellyfin persist folders

This commit is contained in:
Leyla Becker 2025-01-11 13:04:23 -06:00
parent 0d952467cc
commit e7a53a5df0

View file

@ -7,6 +7,7 @@
jellyfinPort = 8096;
jellyfin_data_directory = "/var/lib/jellyfin";
jellyfin_cache_directory = "/var/cache/jellyfin";
jellyfin_media_directory = "/srv/jellyfin/media";
in {
options.host.jellyfin = {
enable = lib.mkEnableOption "should jellyfin be enabled on this computer";
@ -31,6 +32,21 @@ in {
];
}
(lib.mkIf config.host.impermanence.enable {
fileSystems."/persist/system/jellyfin".neededForBoot = true;
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";
};
};
};
assertions = [
{
assertion = config.services.jellyfin.dataDir == jellyfin_data_directory;
@ -42,7 +58,8 @@ in {
}
];
environment.persistence."/persist/system/jellyfin" = {
environment.persistence = {
"/persist/system/root" = {
enable = true;
hideMounts = true;
directories = [
@ -59,18 +76,17 @@ in {
];
};
fileSystems."/persist/system/jellyfin".neededForBoot = true;
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";
};
"/persist/system/jellyfin" = {
enable = true;
hideMounts = true;
directories = [
{
directory = jellyfin_media_directory;
user = "jellyfin";
group = "jellyfin_media";
mode = "1770";
}
];
};
};
})