diff options
Diffstat (limited to 'test/module')
| -rw-r--r-- | test/module/flake.nix | 5 |
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; }; }; |
