From 509274c90e8fd03ee6344ad95aa50b2c132bd929 Mon Sep 17 00:00:00 2001 From: pinpox Date: Wed, 4 Jun 2025 14:17:33 +0200 Subject: [PATCH] cleanup checks/flake-module.nix --- checks/flake-module.nix | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/checks/flake-module.nix b/checks/flake-module.nix index ec15fb221..0f3d1a1d4 100644 --- a/checks/flake-module.nix +++ b/checks/flake-module.nix @@ -38,20 +38,6 @@ in }; nixosTests = lib.optionalAttrs (pkgs.stdenv.isLinux) { - # Deltachat test - deltachat = import ./deltachat nixosTestArgs; - - # Ergochat test - ergochat = import ./ergochat nixosTestArgs; - - # Garage test - garage = import ./garage nixosTestArgs; - - # Heisenbridge test - heisenbridge = import ./heisenbridge nixosTestArgs; - - # Mycelium test - mycelium = import ./mycelium nixosTestArgs; # Base Tests secrets = self.clanLib.test.baseTest ./secrets nixosTestArgs; @@ -70,6 +56,11 @@ in borgbackup = import ./borgbackup nixosTestArgs; data-mesher = import ./data-mesher nixosTestArgs; syncthing = import ./syncthing nixosTestArgs; + deltachat = import ./deltachat nixosTestArgs; + ergochat = import ./ergochat nixosTestArgs; + garage = import ./garage nixosTestArgs; + heisenbridge = import ./heisenbridge nixosTestArgs; + mycelium = import ./mycelium nixosTestArgs; } // lib.optionalAttrs (pkgs.stdenv.hostPlatform.system == "aarch64-linux") { # for some reason this hangs in an odd place in CI, but it works on my machine ...