summaryrefslogtreecommitdiff
path: root/hosts/poweredge/immich.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-06-13 14:26:56 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-06-13 14:26:56 -0500
commitfeadf7131e5b6c33ea8485e746361b0529cd6ef4 (patch)
tree86c05c33a837eefc566bec45f5ef91e3c7d91eca /hosts/poweredge/immich.nix
parentb39f24436d5672e90e4261f0dfb906d97e92f1be (diff)
parent0397e503b32e73e03ef2dcdda58cc60da262524d (diff)
downloadnixos-feadf7131e5b6c33ea8485e746361b0529cd6ef4.tar.xz
nixos-feadf7131e5b6c33ea8485e746361b0529cd6ef4.zip
Merge branch 'poweredge'
Diffstat (limited to 'hosts/poweredge/immich.nix')
-rw-r--r--hosts/poweredge/immich.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/hosts/poweredge/immich.nix b/hosts/poweredge/immich.nix
new file mode 100644
index 0000000..a98595e
--- /dev/null
+++ b/hosts/poweredge/immich.nix
@@ -0,0 +1,60 @@
+{
+ containers.immich = {
+ autoStart = true;
+ privateNetwork = true;
+ extraVeths.vb-immich = {
+ hostBridge = "br-lan0";
+ #localMacAddress = "02:00:00:00:00:01"; # TODO update to 26.05
+ };
+
+ # Host path
+ bindMounts = {
+ "/var/lib/immich" = {
+ hostPath = "/media/ingens/immich";
+ isReadOnly = false;
+ };
+ };
+
+ # GPU
+ #allowedDevices = [
+ # { node = "/dev/dri/card1"; modifier = "rw"; }
+ # { node = "/dev/dri/renderD128"; modifier = "rw"; }
+ #];
+
+ #bindMounts = {
+ # "/dev/dri/card1" = {
+ # hostPath = "/dev/dri/card1";
+ # isReadOnly = false;
+ # };
+ # "/dev/dri/renderD128" = {
+ # hostPath = "/dev/dri/renderD128";
+ # isReadOnly = false;
+ # };
+ #};
+
+ config = { lib, pkgs, config, ... }: {
+ # Network
+ networking.interfaces.vb-immich.useDHCP = true;
+ networking.firewall.allowedTCPPorts = [ 80 ]; # Caddy
+
+ # Immich
+ services.immich = {
+ enable = true;
+ host = "0.0.0.0";
+ openFirewall = true;
+ };
+
+ environment.systemPackages = with pkgs; [ immich immich-cli ];
+
+ # Reverse proxy
+ services.caddy = {
+ enable = true;
+ virtualHosts.":80".extraConfig = ''
+ reverse_proxy localhost:2283
+ '';
+ };
+
+ system.stateVersion = "25.11";
+ };
+ };
+}