From b2cfd98331cb41a9ceeb1367835ca87e3a06f2e8 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Sun, 7 Dec 2025 20:12:07 -0800 Subject: [PATCH] Remove double single-quote --- modules/system/git-auto-rebuild.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/git-auto-rebuild.nix b/modules/system/git-auto-rebuild.nix index 53ea7d4..f5c34b8 100644 --- a/modules/system/git-auto-rebuild.nix +++ b/modules/system/git-auto-rebuild.nix @@ -7,7 +7,7 @@ # startAt = "*:0/1"; serviceConfig = { Type = "simple"; - ExecStart = "${pkgs.bash}/bin/bash -c ''cd /etc/nixos && ${pkgs.git}/bin/git pull && ${pkgs.nixos-rebuild}/bin/nixos-rebuild switch --flake #$(hostname)''"; + ExecStart = "${pkgs.bash}/bin/bash -c 'cd /etc/nixos && ${pkgs.git}/bin/git pull && ${pkgs.nixos-rebuild}/bin/nixos-rebuild switch --flake #$(hostname)'"; }; }; }