aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/flake.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nix/flake.cc b/src/nix/flake.cc
index fda903944..470dfdc08 100644
--- a/src/nix/flake.cc
+++ b/src/nix/flake.cc
@@ -24,12 +24,14 @@ struct CmdFlakeList : StoreCommand, MixEvalArgs
{
auto evalState = std::make_shared<EvalState>(searchPath, store);
- auto registry = evalState->getFlakeRegistry();
+ auto registries = evalState->getFlakeRegistries();
stopProgressBar();
- for (auto & entry : registry.entries) {
- std::cout << entry.first << " " << entry.second.ref.to_string() << "\n";
+ for (auto & registry : registries) {
+ for (auto & entry : registry->entries) {
+ std::cout << entry.first << " " << entry.second.ref.to_string() << "\n";
+ }
}
}
};