aboutsummaryrefslogtreecommitdiff
path: root/src/nix-env/user-env.hh
blob: 10646f713134652ad847b128d710298fe918464d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 std::string & lockToken);

}