change mount point

This commit is contained in:
Yan Lin 2026-02-14 20:59:33 +01:00
parent 91480629ae
commit 0646638710
4 changed files with 12 additions and 4 deletions

View file

@ -14,14 +14,15 @@
Media = { enable = true; maxAgeDays = 7; };
Archive = { enable = true; maxAgeDays = 30; };
Consume = { enable = true; maxAgeDays = 7; };
DCIM = { enable = true; maxAgeDays = 7; path = "/mnt/storage/DCIM"; };
};
services.scheduled-commands.dcim-consume = {
enable = false;
enable = true;
description = "Move files in dcim consume folder to DCIM";
interval = "*-*-* *:00/15:00";
commands = [
"photo-move -d /home/yanlin/Consume/dcim /mnt/essd/DCIM"
"photo-move -d /home/yanlin/Consume/dcim /mnt/storage/DCIM"
];
};