diff --git a/flake.nix b/flake.nix index e511de4..b6ed513 100644 --- a/flake.nix +++ b/flake.nix @@ -75,9 +75,7 @@ ''; }) (lib.filterAttrs (_: isDeployable) self.nixosConfigurations); - checks = (builtins.mapAttrs (_: lib: lib.deployChecks self.deploy) deploy-rs.lib) // { - integration-test = import ./test/vm-test.nix { inherit self nixpkgs system; }; - }; + checks = builtins.mapAttrs (_: lib: lib.deployChecks self.deploy) deploy-rs.lib; outputsBuilder = channels: { formatter = channels.nixpkgs.alejandra; diff --git a/test/vm-test.nix b/test/vm-test.nix index e15b719..57acc80 100644 --- a/test/vm-test.nix +++ b/test/vm-test.nix @@ -1,6 +1,7 @@ -{ self, nixpkgs, system, ... }: +{ self, nixpkgs, ... }: let + system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in pkgs.nixosTest {