Extend support for Nix/NixOS/home-manager (#253)

This commit is contained in:
Oleksii Filonenko
2019-11-11 22:16:40 +02:00
committed by Roey Darwish Dror
parent 227c96b724
commit f93b2720a0
5 changed files with 74 additions and 2 deletions

View File

@@ -204,6 +204,12 @@ fn run() -> Result<(), Error> {
)?;
execute(&mut report, "nix", || unix::run_nix(run_type), config.no_retry())?;
execute(
&mut report,
"home-manager",
|| unix::run_home_manager(run_type),
config.no_retry(),
)?;
}
}