Update nix flake

This commit is contained in:
2025-01-07 18:33:11 +03:00
parent 4f19d006d0
commit 4b2d705906

View File

@@ -91,13 +91,13 @@
path = [
pkgs.photocatalog
];
preStart = if !sync.skipFullSync then """
preStart = if !sync.skipFullSync then ''
mkdir -p ${sync.target}
photocatalog -source ${sync.source} -target ${sync.target}
""" else null;
script = """
'' else null;
script = ''
photocatalog -source ${sync.source} -target ${sync.target} -skip-full-sync -watch
""";
'';
}
) config.photocatalog.syncs;
};