mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 10:10:45 -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 = {
|
serviceConfig = {
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
User = "daylin";
|
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 = {
|
systemd.timers.notes-bot-timer = {
|
||||||
|
|
Loading…
Reference in a new issue