17 lines
426 B
Nix
17 lines
426 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
containers.jellyfin = {
|
||
|
config = { pkgs, ...}: {
|
||
|
system.stateVersion = "25.05";
|
||
|
|
||
|
services.jellyfin = {
|
||
|
enable = true;
|
||
|
package = pkgs.jellyfin;
|
||
|
};
|
||
|
};
|
||
|
autoStart = true;
|
||
|
privateNetwork = true;
|
||
|
hostAddress = "172.30.0.2"; # TODO define in config option
|
||
|
localAddress = "172.30.0.2";
|
||
|
};
|
||
|
}
|