hosts: dmz: enable hydra

This commit is contained in:
Kabbone 2024-05-05 19:39:35 +02:00
parent 941276e83f
commit f864f543b8
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 13 additions and 0 deletions

View File

@ -12,6 +12,7 @@
[
./microvm.nix
./hydra.nix
]
# picom, polybar and sxhkd are pulled from desktop module

View File

@ -0,0 +1,12 @@
{ lib, config, pkgs, ... }:
{
services.hydra = {
enable = true;
port = true;
hydraURL = "http://localhost:3000";
notificationSender = "hydra@localhost";
useSubstitutes = true;
};
}