1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 23:13:14 +02:00

Pass all --option flags to the daemon

This commit is contained in:
Eelco Dolstra 2012-07-31 18:19:44 -04:00
parent 89a8207029
commit 90d9c58d4d
4 changed files with 30 additions and 3 deletions

View file

@ -113,6 +113,7 @@ void Settings::loadConfFile()
void Settings::set(const string & name, const string & value)
{
settings[name] = value;
overrides[name] = value;
}
@ -193,4 +194,10 @@ string Settings::pack()
}
Settings::SettingsMap Settings::getOverrides()
{
return overrides;
}
}