Merge pull request #11776 from NixOS/push-porpmpmkzuus

fix: make sure directory exists before using `ln`
This commit is contained in:
Jörg Thalheim 2024-11-01 11:18:53 +01:00 committed by GitHub
commit 2e5759e377
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,6 +96,9 @@ poly_configure_nix_daemon_service() {
if [ -e /run/systemd/system ]; then
task "Setting up the nix-daemon systemd service"
_sudo "to create parent of the nix-daemon tmpfiles config" \
mkdir -p "$(dirname "$TMPFILES_DEST")"
_sudo "to create the nix-daemon tmpfiles config" \
ln -sfn "/nix/var/nix/profiles/default$TMPFILES_SRC" "$TMPFILES_DEST"