mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-04 21:43:15 -06:00
fix quotes in systemd service files
This commit is contained in:
parent
055132a2f1
commit
8df8d8ffc7
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,9 @@ in {
|
|||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
User = "daylin";
|
||||
ExecStart = ''${notes-git} commit -m ":memo: :robot: $(${pkgs.coreutils}/bin/date +'%T')" --no-gpg-sign -- notes'';
|
||||
ExecStart = ''
|
||||
${pkgs.bash}/bin/bash -c '${notes-git} commit -m ":memo: :robot: $(${pkgs.coreutils}/bin/date +\'%%T\')" --no-gpg-sign -- notes'
|
||||
'';
|
||||
};
|
||||
};
|
||||
systemd.timers.notes-bot-timer = {
|
||||
|
|
Loading…
Reference in a new issue