소스 검색

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

Zander Hawke 9 달 전
부모
커밋
11bc336efd
2개의 변경된 파일4개의 추가작업 그리고 9개의 파일을 삭제
  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]>";
     };
   };