diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-14 15:53:48 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-14 15:53:48 -0500 |
| commit | 33771d6733ba9064fa29478a5f356dbbb1d975c2 (patch) | |
| tree | 77032ca68b82455be1a60fdb1a38a22d553b81a9 | |
| parent | 9524e49d1ab7876cf0c017ca7287f301661758f3 (diff) | |
| download | nixos-33771d6733ba9064fa29478a5f356dbbb1d975c2.tar.xz nixos-33771d6733ba9064fa29478a5f356dbbb1d975c2.zip | |
simplify immich/jellyfin containers
| -rw-r--r-- | hosts/poweredge/immich.nix | 7 | ||||
| -rw-r--r-- | hosts/poweredge/jellyfin.nix | 1 |
2 files changed, 1 insertions, 7 deletions
diff --git a/hosts/poweredge/immich.nix b/hosts/poweredge/immich.nix index b65d05d..51d7885 100644 --- a/hosts/poweredge/immich.nix +++ b/hosts/poweredge/immich.nix @@ -36,12 +36,7 @@ networking.firewall.allowedTCPPorts = [ 80 ]; # Caddy # Immich - services.immich = { - enable = true; - host = "0.0.0.0"; - openFirewall = true; - }; - + services.immich.enable = true; environment.systemPackages = with pkgs; [ immich immich-cli ]; # Reverse proxy diff --git a/hosts/poweredge/jellyfin.nix b/hosts/poweredge/jellyfin.nix index 92412f8..4fab7cc 100644 --- a/hosts/poweredge/jellyfin.nix +++ b/hosts/poweredge/jellyfin.nix @@ -44,7 +44,6 @@ # Jellyfin services.jellyfin = { enable = true; - openFirewall = true; #hardwareAcceleration = { # enable = true; # type = "nvenc"; |
