Compare commits

..

No commits in common. "701c86d650f0c353d4a1188f1fd0131049a1e0bc" and "59222204980dd2bd666623a39840d990bf493a15" have entirely different histories.

View file

@ -14,6 +14,7 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String {
.current_dir(Path::new(config_dir))
.args([
"build",
"--impure",
"--quiet",
&format!(
"./#nixosConfigurations.{}.config.system.build.toplevel",
@ -21,6 +22,9 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String {
),
"--dry-run",
"--json",
"--option",
"eval-cache",
"true",
])
.output()
.unwrap();