diff options
Diffstat (limited to 'src/command.rs')
| -rw-r--r-- | src/command.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/command.rs b/src/command.rs index be1dd4c..3d630ca 100644 --- a/src/command.rs +++ b/src/command.rs @@ -19,7 +19,10 @@ impl Run for crate::Cli { resolve_installables(installables).await? } else if let Some(configuration) = &self.configuration { println!("❓ Indexing requisites of configuration closure"); - nix::configuration_closure_paths(configuration)? + nix::system_configuration_closure_paths(configuration)? + } else if let Some(home) = &self.home { + println!("❓ Indexing requisites of home configuration closure"); + nix::home_configuration_closure_paths(home)? } else { println!("❓ Indexing all installables of flake `{}`", self.flake); let installables = nix::all_flake_installables(&self.flake)?; |
