50 lines
1.6 KiB
Nix
50 lines
1.6 KiB
Nix
# Host hydra
|
|
{...}: {
|
|
services.hydra = {
|
|
enable = true;
|
|
hydraURL = "http://hydra.julian-mutter.de"; # externally visible URL
|
|
port = 3000;
|
|
notificationSender = "hydra@julian-mutter.de"; # e-mail of hydra service
|
|
# a standalone hydra will require you to unset the buildMachinesFiles list to avoid using a nonexistant /etc/nix/machines
|
|
# buildMachinesFiles = [ ];
|
|
# you will probably also want, otherwise *everything* will be built from scratch
|
|
useSubstitutes = true;
|
|
|
|
minimumDiskFree = 5; # in GB
|
|
minimumDiskFreeEvaluator = 4; # in GB
|
|
};
|
|
|
|
# Uris allowed as flake inputs, otherwise hydra does not fetch them
|
|
nix.settings.allowed-uris = [
|
|
"github:"
|
|
"gitlab:"
|
|
"git+https://github.com/hyprwm/Hyprland"
|
|
"https://github.com/hyprwm/Hyprland"
|
|
"https://github"
|
|
"https://gitlab"
|
|
"https://gitlab.julian-mutter.de"
|
|
"git+https://gitlab.julian-mutter.de"
|
|
];
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
# recommendedTlsSettings = true;
|
|
# other Nginx options
|
|
virtualHosts."hydra.julian-mutter.de" = {
|
|
# enableACME = true;
|
|
# forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:3000";
|
|
# proxyWebsockets = true; # needed if you need to use WebSocket
|
|
# extraConfig =
|
|
# # required when the target is also TLS server with multiple hosts
|
|
# "proxy_ssl_server_name on;" +
|
|
# # required when the server wants to use HTTP Authentication
|
|
# "proxy_pass_header Authorization;"
|
|
# ;
|
|
};
|
|
};
|
|
};
|
|
}
|