infra/nixos/hosts/eidola/services/jellyfin.nix

11 lines
182 B
Nix

_: {
services.jellyfin = {
enable = true;
};
# allow it to access network shares
systemd.services.jellyfin = {
serviceConfig.SupplementaryGroups = ["share"];
};
}