From 1b9f4dce9521f63f722769dcf50c6436fbe9869a Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sun, 10 Dec 2023 14:57:17 +0100 Subject: [PATCH] test: move to tests dir --- flake.nix | 2 +- test.nix => tests/minimal-vmtest.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test.nix => tests/minimal-vmtest.nix (100%) diff --git a/flake.nix b/flake.nix index c8962ac..754007f 100644 --- a/flake.nix +++ b/flake.nix @@ -210,7 +210,7 @@ }; checks = { default = self.checks.${system}.vmtest; - vmtest = (import ./test.nix { + vmtest = (import tests/minimal-vmtest.nix { inherit pkgs authentik-version; inherit (self) nixosModules; }); diff --git a/test.nix b/tests/minimal-vmtest.nix similarity index 100% rename from test.nix rename to tests/minimal-vmtest.nix