merge: fix-eval-cache from #24 into main
All checks were successful
conventional commits / conventional commits (push) Successful in 9s
build / run (push) Successful in 13s
check / run (push) Successful in 58s

This commit is contained in:
Christina Sørensen 2024-09-08 14:52:49 +02:00
commit 701c86d650
Signed by: cafkafk
GPG key ID: 26C542FD97F965CE

View file

@ -14,7 +14,6 @@ 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",
@ -22,9 +21,6 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String {
),
"--dry-run",
"--json",
"--option",
"eval-cache",
"true",
])
.output()
.unwrap();