about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-15T14·38+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-15T14·38+0200
commite0c8c5c798d51cb2cc37bd478d364dca99cce0b8 (patch)
treeee4f55ce60dc309624f3549a27920d8c71e4aa86
parent21660c6bb62d0774a74280a853aec09b846db96d (diff)
fix: Add a missing semicolon
-rw-r--r--configuration.nix2
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'";