1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 09:31:16 +02:00

Apply review suggestions

Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
This commit is contained in:
Linus Heckemann 2023-03-14 12:02:03 +01:00
parent e91596eb69
commit 3a1de4c3fe
2 changed files with 4 additions and 4 deletions

View file

@ -118,10 +118,10 @@ struct LockFlags
bool commitLockFile = false;
/* The path to a lock file to read instead of the `flake.lock` file in the top-level flake */
std::optional<std::string> referenceLockFilePath = std::nullopt;
std::optional<std::string> referenceLockFilePath;
/* The path to a lock file to write to instead of the `flake.lock` file in the top-level flake */
std::optional<Path> outputLockFilePath = std::nullopt;
std::optional<Path> outputLockFilePath;
/* Flake inputs to be overridden. */
std::map<InputPath, FlakeRef> inputOverrides;