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>
This commit is contained in:
Christina Sørensen 2024-09-08 14:36:18 +02:00
parent 5922220498
commit beef106b41
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();