4 lines
184 B
Plaintext
4 lines
184 B
Plaintext
|
#!/bin/sh
|
||
|
[ "${NIXREDO_ROOT+x}" = x ] || { printf "$0 only runs for private a nix store. Set NIXREDO_ROOT to a non-empty value\n"; exit 127; }
|
||
|
nix-store --store "${NIXREDO_ROOT}" --gc
|