Browse Source

note(odin+immich): add smtp auth to environment

Zander Hawke 9 months ago
parent
commit
11bc336efd
2 changed files with 4 additions and 9 deletions
  1. 0 7
      hosts/odin/services/default.nix
  2. 4 2
      hosts/odin/services/immich.nix

+ 0 - 7
hosts/odin/services/default.nix

@@ -7,12 +7,5 @@
     ./samba.nix
     ./snapraid.nix
     ./tailscale.nix
-    # ./immich.nix
-    # ./snapraid.nix
-    # ./mergerfs.nix
-    # Add more services as you create them
-    # ./jellyfin.nix
-    # ./nextcloud.nix
-    # ./traefik.nix
   ];
 }

+ 4 - 2
hosts/odin/services/immich.nix

@@ -12,9 +12,11 @@ in
     accelerationDevices = [ "/dev/dri/renderD128" ];
     settings = {
       metadata.faces.import = true;
+      newVersionCheck.enabled = false;
       server.externalDomain = "https://${domain}";
-      notifications.smtp.enabled = true;
-      notifications.smtp.from = "Odin Photos <[email protected]>";
+      # TODO: add smtp authentication to environment
+      # notifications.smtp.enabled = true;
+      # notifications.smtp.from = "Odin Photos <[email protected]>";
     };
   };