diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-23 10:29:58 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-23 10:29:58 +0100 |
commit | 9be782798f5a853d28d3822716c8b74d518338c2 (patch) | |
tree | 5dfcfa9ef7b885bfda136bcb2c7388d3c46d4890 /flake/packages | |
parent | tests({tests,modules}): Couple via a co-import (diff) | |
download | nixos-config-9be782798f5a853d28d3822716c8b74d518338c2.tar.gz nixos-config-9be782798f5a853d28d3822716c8b74d518338c2.zip |
tests(flake): Hook up to the flake's check and package attributes
Diffstat (limited to 'flake/packages')
-rw-r--r-- | flake/packages/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/flake/packages/default.nix b/flake/packages/default.nix index 5b07b6f3..a8fc2d64 100644 --- a/flake/packages/default.nix +++ b/flake/packages/default.nix @@ -13,6 +13,8 @@ inherit (pkgs) lib; output = import ../../bootstrap {inherit pkgs sysLib;}; + run_test_description = pkgs.callPackage ../../tests/infrastructure/run.nix {}; + nvim = builtins.mapAttrs ( name: value: let @@ -88,6 +90,7 @@ in # format = "iso"; # }; nvim = nvim.tiamat; + inherit run_test_description; } // output // output_neovim |