about summary refs log tree commit diff
path: root/third_party/nix/src/nix-env/user-env.hh
#pragma once

#include "get-drvs.hh"

namespace nix {

DrvInfos queryInstalled(EvalState & state, const Path & userEnv);

bool createUserEnv(EvalState & state, DrvInfos & elems,
    const Path & profile, bool keepDerivations,
    const string & lockToken);

}