diff --git a/appserver/configuration.nix b/appserver/configuration.nix index e7d0114..8db88cd 100644 --- a/appserver/configuration.nix +++ b/appserver/configuration.nix @@ -68,6 +68,7 @@ "podman" "ollama" "writefreely" + "incus-admin" ]; packages = with pkgs; [ bottom diff --git a/appserver/jellyfin.nix b/appserver/jellyfin.nix index 79489a4..dc29fd5 100644 --- a/appserver/jellyfin.nix +++ b/appserver/jellyfin.nix @@ -1,6 +1,9 @@ { config, pkgs, ... }: { - services.jellyfin.enable = true; + services.jellyfin = { + enable = true; + group = "users"; + }; networking.firewall.allowedTCPPorts = [ 8096 8920 ]; networking.firewall.allowedUDPPorts = [ 1900 7359 ]; }