nixos/services/jellyfin.nix

14 lines
281 B
Nix
Raw Normal View History

2026-01-22 10:45:49 +00:00
#jellyfin.nix
{ config, pkgs, lib, ... }:
{
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
# Jellyfin
services.jellyfin = {
enable = true;
openFirewall = true;
};
users.users.jellyfin.extraGroups = [ "media" ];
};
}