mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
21 lines
403 B
Nix
21 lines
403 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.jellyfin = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
systemd.services.jellyfin = {
|
|
after = [ "network-online.target" ];
|
|
#unitConfig.RequiresMountsFor = [ "/storage" ];
|
|
};
|
|
|
|
webapps.apps.jellyfin = {
|
|
dashboard = {
|
|
name = "Jellyfin";
|
|
category = "app";
|
|
icon = "film";
|
|
link = "http://192.168.178.60:8096";
|
|
};
|
|
};
|
|
}
|