environment.HOME = statePath;
after = optional (serviceDrv.pname != "metasrht" && cfg.meta.enable) "metasrht.service";
requires = optional (serviceDrv.pname != "metasrht" && cfg.meta.enable) "metasrht.service";
- path = [ config.services.postgresql.package ] ++ (attrs.path or [ ]);
+ path = [ config.services.postgresql.package ];
restartTriggers = [ config.environment.etc."sr.ht/config.ini".source ];
serviceConfig = {
Type = "simple";
StateDirectory = [ "sourcehut/${serviceDrv.pname}" ];
};
- preStart = ''
+ preStart = mkBefore ''
if ! test -e ${statePath}/db; then
# Setup the initial database
${cfg.python}/bin/python <<EOF
printf "%s" "${serviceDrv.version}" > ${statePath}/db
fi
''}
-
- ${attrs.preStart or ""}
'';
}
-(builtins.removeAttrs attrs [ "path" "preStart" ])
+attrs
]