dotfiles/nix/modules/nixos/features/homelab/jellyfin.nix
Oliver Davies 5ebf83a334 Un-reverse the directory names
This makes it consistent with other places where I use fzf.
2024-11-26 15:18:58 +00:00

13 lines
259 B
Nix

{ config, lib, ... }:
{
options.features.homelab.jellyfin.enable = lib.mkEnableOption "Enable jellyfin";
config = lib.mkIf config.features.homelab.jellyfin.enable {
services.jellyfin = {
enable = true;
openFirewall = true;
};
};
}