diff --git a/configurations/camelot/default.nix b/configurations/camelot/default.nix index a2dc5cd..6d6a9aa 100644 --- a/configurations/camelot/default.nix +++ b/configurations/camelot/default.nix @@ -25,6 +25,10 @@ } ]; + imports = [ + ./jellyfin.nix + ]; + swapDeviceUUID = "a7c628ab-c5cb-4094-89d0-19b153fbead4"; server.networking.enableSSH = true; diff --git a/configurations/camelot/jellyfin.nix b/configurations/camelot/jellyfin.nix new file mode 100644 index 0000000..e3ff5ce --- /dev/null +++ b/configurations/camelot/jellyfin.nix @@ -0,0 +1,6 @@ +{ + services.jellyfin.enable = true; + networking.firewall.allowedTCPPorts = [ + 8096 + ]; +}