1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Add a launchd configuration file to run nix-daemon

This commit is contained in:
Eelco Dolstra 2014-11-04 10:14:18 +01:00
parent 6f6b75cd09
commit bbf294cceb
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.nixos.nix-daemon</string>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>@bindir@/nix-daemon</string>
<key>StandardErrorPath</key>
<string>/var/log/nix-daemin.log</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
</dict>
</plist>