dotfiles/provision/hosts/torus/jellyfin.nix

7 lines
152 B
Nix
Raw Normal View History

2024-09-30 10:43:24 -07:00
{ config, lib, pkgs, user, ... }:
{
services.jellyfin.enable = true;
services.jellyfin.openFirewall = true;
services.jellyfin.user = "${user}";
}