nix-files/machines/servo/services/jellyfin.nix

12 lines
355 B
Nix
Raw Normal View History

{ config, ... }:
{
2022-08-01 07:23:49 +00:00
sane.impermanence.service-dirs = [
# TODO: mode? could be more granular
{ user = "jellyfin"; group = "jellyfin"; directory = "/var/lib/jellyfin"; }
];
2022-08-01 07:23:49 +00:00
users.users.jellyfin.uid = config.sane.allocations.jellyfin-uid;
users.groups.jellyfin.gid = config.sane.allocations.jellyfin-gid;
services.jellyfin.enable = true;
}