From 2a722dbf7347836284b81b32a14e5f849dafda25 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 22 Sep 2022 00:51:00 +0200 Subject: [PATCH] Use hydra with unstable nix tool --- hosts/tsuki/services/hydra.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/tsuki/services/hydra.nix b/hosts/tsuki/services/hydra.nix index 1af50dd..b0ca4f7 100644 --- a/hosts/tsuki/services/hydra.nix +++ b/hosts/tsuki/services/hydra.nix @@ -1,4 +1,4 @@ -{ secrets, ... }: +{ pkgs, unstable-pkgs, secrets, ... }: { # Follow instructions for setup: # https://gist.github.com/joepie91/c26f01a787af87a96f967219234a8723 @@ -7,6 +7,8 @@ hydraURL = "http://hydra.nani.wtf"; notificationSender = "hydra@nani.wtf"; useSubstitutes = true; + package = unstable-pkgs.hydra_unstable; port = secrets.ports.hydra; + buildMachinesFiles = []; }; }