From 72f11cb0f95bb6879db0fcec3752792e3ca5f234 Mon Sep 17 00:00:00 2001 From: sanling1 <504767574@qq.com> Date: Mon, 20 Apr 2026 10:06:54 +0800 Subject: [PATCH] Add test.nix to trigger flake check --- test.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test.nix diff --git a/test.nix b/test.nix new file mode 100644 index 00000000..50c6d902 --- /dev/null +++ b/test.nix @@ -0,0 +1,8 @@ +# Test nix file to trigger workflow +{ pkgs ? import {} }: + +pkgs.stdenv.mkDerivation { + name = "test"; + src = ./.; + buildInputs = [ ]; +} \ No newline at end of file