nixd
Loading...
Searching...
No Matches
InitEval.h
Go to the documentation of this file.
1#pragma once
2
3#include <nix/common-eval-args.hh>
4#include <nix/eval-gc.hh>
5#include <nix/eval-settings.hh>
6#include <nix/eval.hh>
7#include <nix/flake/flake.hh>
8#include <nix/plugin.hh>
9#include <nix/shared.hh>
10#include <nix/store-api.hh>
11
12namespace nixt {
13
14inline void initEval() {
15 nix::initNix();
16 nix::initLibStore();
17 nix::flake::initLib(nix::flakeSettings);
18 nix::initPlugins();
19 nix::initGC();
20}
21
22} // namespace nixt
Access EvalCache in nix::EvalState.
Definition ArrayRef.h:7
void initEval()
Definition InitEval.h:14