mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
ea71da395f
Starting work on #5638 The exact boundary between `FetchSettings` and `EvalSettings` is not clear to me, but that's fine. First lets clean out `libstore`, and then worry about what, if anything, should be the separation between those two.
13 lines
178 B
C++
13 lines
178 B
C++
#include "fetch-settings.hh"
|
|
|
|
namespace nix {
|
|
|
|
FetchSettings::FetchSettings()
|
|
{
|
|
}
|
|
|
|
FetchSettings fetchSettings;
|
|
|
|
static GlobalConfig::Register rFetchSettings(&fetchSettings);
|
|
|
|
}
|