6 lines
161 B
Nix
6 lines
161 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
services.jellyfin.enable = true;
|
|
services.jellyfin.openFirewall = true;
|
|
users.groups."syncthing".members = [ "jellyfin" ];
|
|
}
|