From ae5c8dcc4d0182d07d75df2dc97112de822cb9d6 Mon Sep 17 00:00:00 2001 From: xunuwu Date: Fri, 14 Jun 2024 08:51:59 +0200 Subject: [PATCH] fix unbalanced quoting --- gigabyte/b550/b550-fix-suspend.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gigabyte/b550/b550-fix-suspend.nix b/gigabyte/b550/b550-fix-suspend.nix index 0e922a8..4986809 100644 --- a/gigabyte/b550/b550-fix-suspend.nix +++ b/gigabyte/b550/b550-fix-suspend.nix @@ -26,7 +26,7 @@ }; serviceConfig = { User = "root"; - ExecStart = "-${pkgs.bash}/bin/bash -c 'if grep 'GPP8' /proc/acpi/wakeup | grep -q 'enabled'; then echo 'GPP8' > /proc/acpi/wakeup; fi''"; + ExecStart = "-${pkgs.bash}/bin/bash -c 'if grep 'GPP8' /proc/acpi/wakeup | grep -q 'enabled'; then echo 'GPP8' > /proc/acpi/wakeup; fi'"; RemainAfterExit = "yes"; }; wantedBy = ["multi-user.target"];