From 804489da73c782bc7cd7dfe282b3d2592eef1c64 Mon Sep 17 00:00:00 2001 From: Astro Date: Sat, 23 Jan 2021 03:59:37 +0100 Subject: [PATCH] hydra.nix: init --- hydra.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 hydra.nix diff --git a/hydra.nix b/hydra.nix new file mode 100644 index 0000000..15ea60f --- /dev/null +++ b/hydra.nix @@ -0,0 +1,10 @@ +let + pkgs = import {}; + + jobs = rec { + test = pkgs.lib.hydraJob ( + pkgs.writeText "test" "" + ); + }; +in + jobs