about summary refs log tree commit diff
path: root/src/libstore/globals.cc
blob: 52f2a0a0bffade227fd1da4b27500689c151f75e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "globals.hh"

string nixStore = "/UNINIT";
string nixDataDir = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixStateDir = "/UNINIT";
string nixDBPath = "/UNINIT";

bool keepFailed = false;

bool keepGoing = false;

bool tryFallback = false;

Verbosity buildVerbosity = lvlInfo;

unsigned int maxBuildJobs = 1;

bool readOnlyMode = false;