Compare commits
No commits in common. "701c86d650f0c353d4a1188f1fd0131049a1e0bc" and "59222204980dd2bd666623a39840d990bf493a15" have entirely different histories.
701c86d650
...
5922220498
1 changed files with 4 additions and 0 deletions
|
@ -14,6 +14,7 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String {
|
||||||
.current_dir(Path::new(config_dir))
|
.current_dir(Path::new(config_dir))
|
||||||
.args([
|
.args([
|
||||||
"build",
|
"build",
|
||||||
|
"--impure",
|
||||||
"--quiet",
|
"--quiet",
|
||||||
&format!(
|
&format!(
|
||||||
"./#nixosConfigurations.{}.config.system.build.toplevel",
|
"./#nixosConfigurations.{}.config.system.build.toplevel",
|
||||||
|
@ -21,6 +22,9 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String {
|
||||||
),
|
),
|
||||||
"--dry-run",
|
"--dry-run",
|
||||||
"--json",
|
"--json",
|
||||||
|
"--option",
|
||||||
|
"eval-cache",
|
||||||
|
"true",
|
||||||
])
|
])
|
||||||
.output()
|
.output()
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
Loading…
Reference in a new issue