mirror of
https://github.com/NixOS/nix.git
synced 2025-12-02 15:11:00 +01:00
They are not actually part of the store layer, but instead part of the Nix executable infra (libraries don't need plugins, executables do). This is part of a larger project of moving all of our legacy settings infra to libmain, and having the underlying libraries just have plain configuration structs detached from any settings infra / UI layer. Progress on #5638
12 lines
156 B
C++
12 lines
156 B
C++
#pragma once
|
|
///@file
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* This should be called after settings are initialized, but before
|
|
* anything else
|
|
*/
|
|
void initPlugins();
|
|
|
|
}
|