summaryrefslogtreecommitdiff
path: root/test/module
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-21 18:54:59 -0500
committerseth <[email protected]>2023-12-21 18:54:59 -0500
commit648620fcae21a93a86275fc87a28732f91737725 (patch)
tree81f305973c8a30c3662499c791e4a32f08801ceb /test/module
parentf1de38cfea711e9a788794b5a658298b4062defb (diff)
module: add exclude option
Diffstat (limited to 'test/module')
-rw-r--r--test/module/flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/module/flake.nix b/test/module/flake.nix
index 69aa4a2..0bbbc54 100644
--- a/test/module/flake.nix
+++ b/test/module/flake.nix
@@ -25,6 +25,10 @@
"aarch64-darwin"
];
+ githubWorkflowGenerator.exclude = [
+ "packages.x86_64-linux.otherHello"
+ ];
+
perSystem = {pkgs, ...}: {
devShells.default = pkgs.mkShell {
packages = [pkgs.hello];
@@ -32,6 +36,7 @@
packages = {
inherit (pkgs) hello;
+ otherHello = pkgs.hello;
default = pkgs.hello;
};
};