diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-15T14·38+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-15T14·38+0200 |
commit | e0c8c5c798d51cb2cc37bd478d364dca99cce0b8 (patch) | |
tree | ee4f55ce60dc309624f3549a27920d8c71e4aa86 | |
parent | 21660c6bb62d0774a74280a853aec09b846db96d (diff) |
fix: Add a missing semicolon
-rw-r--r-- | configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index 84e3911bfea2..df677ed941db 100644 --- a/configuration.nix +++ b/configuration.nix @@ -81,7 +81,7 @@ in { systemd.user.services.clone-wallpapers = { description = "Clone wallpaper repository"; enable = true; - before = [ "feh-wp.service" "feh-wp.timer" ] + before = [ "feh-wp.service" "feh-wp.timer" ]; serviceConfig = { Type = "oneshot"; ExecStart = "${pkgs.fish}/bin/fish -c '${pkgs.coreutils}/bin/stat %h/wallpapers; or ${pkgs.git}/bin/git clone https://git.tazj.in/tazjin/wallpapers.git %h/wallpapers'"; |