blob: 81ba6c7210e905d078f4511726f846c7247093f1 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Install nix
curl -L https://nixos.org/nix/install | sh -s -- --daemon
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
fi
|