fix for jellyfin added to group users

This commit is contained in:
Geir Okkenhaug Jerstad 2024-05-22 19:16:58 +02:00
parent f3bfda57aa
commit 1a5e2e5eb4
2 changed files with 5 additions and 1 deletions

View file

@ -68,6 +68,7 @@
"podman" "podman"
"ollama" "ollama"
"writefreely" "writefreely"
"incus-admin"
]; ];
packages = with pkgs; [ packages = with pkgs; [
bottom bottom

View file

@ -1,6 +1,9 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
services.jellyfin.enable = true; services.jellyfin = {
enable = true;
group = "users";
};
networking.firewall.allowedTCPPorts = [ 8096 8920 ]; networking.firewall.allowedTCPPorts = [ 8096 8920 ];
networking.firewall.allowedUDPPorts = [ 1900 7359 ]; networking.firewall.allowedUDPPorts = [ 1900 7359 ];
} }