f4d44a0026
permission to the Nix store or database. E.g., `nix-env -qa' will work, but `nix-env -qas' won't (the latter needs DB access). The option `--readonly-mode' forces this mode; otherwise, it's only activated when the database cannot be opened.
20 lines
350 B
C++
20 lines
350 B
C++
#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;
|