9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
sudo bash -c '
|
|
if ! [ -d /nix/var ]; then
|
|
rm -r /nix || true
|
|
ln -s /volume1/nix.3.d /nix
|
|
fi
|
|
'
|