diff options
-rw-r--r-- | default.nix | 2 | ||||
-rw-r--r-- | inputs.nix | 10 | ||||
-rw-r--r-- | tests/default.nix | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 1d100d1..55e130e 100644 --- a/default.nix +++ b/default.nix @@ -87,7 +87,7 @@ let modules = import ./modules; packages = import ./pkgs { inherit nixpkgs; }; - tests = import ./tests { inherit nixpkgs; }; + tests = import ./tests { inherit nixpkgs; inherit system; }; }; in self @@ -34,6 +34,16 @@ let ]; } // { outPath = sources.nixpkgs.outPath; }; + # 'boring' version of nixpkgs with fewer (used for vm tests, + # so they're buildable without having to compile e.g. the lix version + # from the overlay) + nixpkgs-boring = import sources.nixpkgs { + inherit system; + overlays = [ + (import ./pkgs/overlay.nix { inherit inputs; }) + ]; + } // { outPath = sources.nixpkgs.outPath; }; + nixpkgs-unstable = import sources.nixpkgs-unstable { inherit system; } // { outPath = sources.nixpkgs-unstable.outPath; }; diff --git a/tests/default.nix b/tests/default.nix index 5c165db..06d2f52 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -1,4 +1,4 @@ -{ nixpkgs ? (import ../inputs.nix { }).nixpkgs }: +{ system ? "x86_64-linux", nixpkgs ? (import ../inputs.nix { inherit system; }).nixpkgs-boring }: { bookwyrm = nixpkgs.nixosTest ./bookwyrm.nix; |