about summary refs log tree commit diff
path: root/src/nix-env/user-env.cc
diff options
context:
space:
mode:
authorChristian Theune <ct@flyingcircus.io>2015-05-20T15·29+0200
committerChristian Theune <ct@flyingcircus.io>2015-05-20T15·29+0200
commit12a888894bc528fbfa9d4c1ef2dbeb5909550894 (patch)
tree0012ded6e603f51098301bebb40c6b59ba7a1628 /src/nix-env/user-env.cc
parentea39c98d419a816029299b99f70455798e66f6b7 (diff)
Mis-read Eelko's request to not make this an option: now, let's not make
it an option. :)
Diffstat (limited to 'src/nix-env/user-env.cc')
-rw-r--r--src/nix-env/user-env.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-env/user-env.cc b/src/nix-env/user-env.cc
index 43db6b513e1d..3bc31b9eafeb 100644
--- a/src/nix-env/user-env.cc
+++ b/src/nix-env/user-env.cc
@@ -28,7 +28,7 @@ DrvInfos queryInstalled(EvalState & state, const Path & userEnv)
 
 bool createUserEnv(EvalState & state, DrvInfos & elems,
     const Path & profile, bool keepDerivations,
-    const string & lockToken, bool lazyGeneration)
+    const string & lockToken)
 {
     /* Build the components in the user environment, if they don't
        exist already. */
@@ -141,7 +141,7 @@ bool createUserEnv(EvalState & state, DrvInfos & elems,
     }
 
     debug(format("switching to new user environment"));
-    Path generation = createGeneration(profile, topLevelOut, lazyGeneration);
+    Path generation = createGeneration(profile, topLevelOut);
     switchLink(profile, generation);
 
     return true;