mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
22 lines
403 B
Nix
22 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";
|
||
|
};
|
||
|
};
|
||
|
}
|