From 31eefe44e641ffff21f78d2482c790f2e13dc96e Mon Sep 17 00:00:00 2001 From: Spotlight Date: Mon, 7 Oct 2024 21:04:31 -0500 Subject: [PATCH] garnix: Only build exported packages We'd like to do this for all available systems, but not their respective `homeConfigurations`. --- garnix.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 garnix.yaml diff --git a/garnix.yaml b/garnix.yaml new file mode 100644 index 0000000..f62ac86 --- /dev/null +++ b/garnix.yaml @@ -0,0 +1,13 @@ +builds: + # Only build exported packages... + include: + - 'packages.*.*' + # ...but not home-manager configurations, or anything else. + exclude: + - 'packages.*.homeConfigurations' + # TODO(spotlightishere): Why is this necessary? + # They are otherwise built. + - devShell.x86_64-linux + - homeConfigurations.* + - darwinConfigurations.* + - nixosConfigurations.*