diff options
| author | Matthew Toohey <contact@mtoohey.com> | 2022-04-14 20:04:12 -0400 |
|---|---|---|
| committer | Matthew Toohey <contact@mtoohey.com> | 2022-04-14 20:07:28 -0400 |
| commit | a4f5ff411e0cfd34d3baafe1fa9f9c020cd64493 (patch) | |
| tree | adb3ed3e1f4a85f960d0d947bc321717379ec4f4 /modules/system | |
| parent | 4fdbb8168f61d31d3f90bb0d07f48de709c4fe79 (diff) | |
Fix synthetic.conf instructions
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/checks.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/checks.nix b/modules/system/checks.nix index 731045e..3500e91 100644 --- a/modules/system/checks.nix +++ b/modules/system/checks.nix @@ -27,9 +27,9 @@ let echo "Create a symlink to /var/run with:" >&2 if test -e /etc/synthetic.conf; then echo >&2 - echo "$ echo 'run\tprivate/var/run' | sudo tee -a /etc/synthetic.conf" >&2 - echo "$ /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs.util -B" >&2 - echo "$ /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs.util -t" >&2 + echo "$ printf 'run\tprivate/var/run\n' | sudo tee -a /etc/synthetic.conf" >&2 + echo "$ /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs.util -B # For Catalina" >&2 + echo "$ /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs.util -t # For Big Sur and later" >&2 echo >&2 echo "The current contents of /etc/synthetic.conf is:" >&2 echo >&2 |
