From 4b2d705906bb19331c3e5c9a66151c5cabc90e52 Mon Sep 17 00:00:00 2001 From: derfenix Date: Tue, 7 Jan 2025 18:33:11 +0300 Subject: [PATCH] Update nix flake --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index e4efeb8..445e180 100644 --- a/flake.nix +++ b/flake.nix @@ -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; };