1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

formatting according to HM's format tool

This commit is contained in:
Peter Kling 2024-11-19 10:54:25 +01:00
parent e091fe38a9
commit 2d676db43f

View file

@ -56,14 +56,10 @@ let
copyKeys = pkgs.writers.writeBash "syncthing-copy-keys" ''
${install} -dm700 "${syncthing_dir}"
${optionalString (cfg.cert != null) ''
${install} -Dm400 ${
toString cfg.cert
} "${syncthing_dir}/cert.pem"
${install} -Dm400 ${toString cfg.cert} "${syncthing_dir}/cert.pem"
''}
${optionalString (cfg.key != null) ''
${install} -Dm400 ${
toString cfg.key
} "${syncthing_dir}/key.pem"
${install} -Dm400 ${toString cfg.key} "${syncthing_dir}/key.pem"
''}
'';
@ -646,7 +642,8 @@ in {
};
Service = {
ExecStartPre = mkIf (cfg.cert != null || cfg.key != null) "+${copyKeys}";
ExecStartPre =
mkIf (cfg.cert != null || cfg.key != null) "+${copyKeys}";
ExecStart = escapeShellArgs syncthingArgs;
Restart = "on-failure";
SuccessExitStatus = [ 3 4 ];
@ -692,13 +689,13 @@ in {
syncthing = {
enable = true;
config = {
ProgramArguments = [ "${
pkgs.writers.writeBash "syncthing-wrapper" ''
ProgramArguments = [
"${pkgs.writers.writeBash "syncthing-wrapper" ''
${copyKeys} # simulate systemd's `syncthing-init.Service.ExecStartPre`
touch "${syncthing_dir}/${watch_file}" # notify syncthing-init agent
exec ${lib.escapeShellArgs syncthingArgs}
''
}" ];
''}"
];
KeepAlive = {
Crashed = true;
SuccessfulExit = false;
@ -711,7 +708,9 @@ in {
enable = true;
config = {
ProgramArguments = [ "${updateConfig}" ];
WatchPaths = [ "${config.home.homeDirectory}/Library/Application Support/Syncthing/${watch_file}" ];
WatchPaths = [
"${config.home.homeDirectory}/Library/Application Support/Syncthing/${watch_file}"
];
};
};
};