Turn $NIX_REMOTE into a configuration option

This commit is contained in:
Eelco Dolstra 2017-10-23 19:34:49 +02:00
parent 38dcd0c4b8
commit f32cdc4fab
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
4 changed files with 8 additions and 7 deletions

View file

@ -78,9 +78,6 @@ bool MultiCommand::processArgs(const Strings & args, bool finish)
StoreCommand::StoreCommand()
{
storeUri = getEnv("NIX_REMOTE");
mkFlag(0, "store", "store-uri", "URI of the Nix store to use", &storeUri);
}
ref<Store> StoreCommand::getStore()
@ -92,7 +89,7 @@ ref<Store> StoreCommand::getStore()
ref<Store> StoreCommand::createStore()
{
return openStore(storeUri);
return openStore();
}
void StoreCommand::run()