1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/src/globals.cc

20 lines
321 B
C++
Raw Normal View History

#include "globals.hh"
#include "db.hh"
string dbRefs = "refs";
string dbNFs = "nfs";
string dbNetSources = "netsources";
string nixStore = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDB = "/UNINIT";
void initDB()
{
createDB(nixDB, dbRefs);
createDB(nixDB, dbNFs);
createDB(nixDB, dbNetSources);
}