Compare commits

..

2 commits

Author SHA1 Message Date
Christina Sørensen
701c86d650
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
2024-09-08 14:52:49 +02:00
Christina Sørensen
beef106b41
fix: actually cache evals
All checks were successful
conventional commits / conventional commits (pull_request) Successful in 10s
build / run (pull_request) Successful in 52s
check / run (pull_request) Successful in 1m33s
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-09-08 14:36:18 +02:00

View file

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