aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-02-16 20:58:08 +0900
committerOphestra <cat@gensokyo.uk>2025-02-16 20:58:08 +0900
commit60c10c3f4ae9b3093e75a22d03d6a1d0862a2f25 (patch)
tree281391e41c696daf1fbee47c4572aca86a6c2092 /flake.nix
parent468696f611178598c8cc6b918f134e92e03e8c29 (diff)
nix: run integration tests with race detector
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 87cf7b64..086e3814 100644
--- a/flake.nix
+++ b/flake.nix
@@ -88,7 +88,10 @@
touch $out
'';
- nixos-tests = callPackage ./test.nix { inherit system self home-manager; };
+ nixos-tests = callPackage ./test.nix {
+ inherit system self home-manager;
+ inherit (self.packages.${system}) fortify;
+ };
}
);