Merge pull request #257325 from NixOS/honk/fix-initdb-script-startup

nixos/modules/honk: fix initdb service startup

authored by

Will Fancher and committed by
GitHub
350b6b84 55e187e8

+1 -1
+1 -1
nixos/modules/services/web-apps/honk.nix
··· 116 unitConfig = { 117 ConditionPathExists = [ 118 # Skip this service if the database already exists 119 - "!$STATE_DIRECTORY/honk.db" 120 ]; 121 }; 122 };
··· 116 unitConfig = { 117 ConditionPathExists = [ 118 # Skip this service if the database already exists 119 + "!%S/honk/honk.db" 120 ]; 121 }; 122 };