mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 17:59:36 +01:00
14 lines
206 B
C++
14 lines
206 B
C++
#include "flake-settings.hh"
|
|
#include "config-global.hh"
|
|
|
|
namespace nix {
|
|
|
|
FlakeSettings::FlakeSettings()
|
|
{
|
|
}
|
|
|
|
FlakeSettings flakeSettings;
|
|
|
|
static GlobalConfig::Register rFlakeSettings(&flakeSettings);
|
|
|
|
}
|