1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

installer: setup /run

This commit is contained in:
Daiderd Jordan 2018-01-13 22:32:47 +01:00
parent 9dd2d679cb
commit 977ed04a60
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -41,4 +41,11 @@ with lib;
esac
fi
'';
system.activationScripts.preActivation.text = ''
echo "setting up /run..."
if ! test -L /run; then
sudo ln -sfn private/var/run /run
fi
'';
}