nixos/services/webservices.nix

11 lines
200 B
Nix
Raw Normal View History

2026-01-20 21:13:33 +00:00
{ config, pkgs, lib, ... }:
{
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
2026-01-20 21:17:17 +00:00
# Jellyfin
services.jellyfin = {
enable = true;
openFirewall = true;
};
}