Use hydra with unstable nix tool

This commit is contained in:
Oystein Kristoffer Tveit 2022-09-22 00:51:00 +02:00
parent 531bd4bab3
commit 2a722dbf73
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 3 additions and 1 deletions

View File

@ -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 = [];
};
}