dotfiles/modules/nixos/services/hydra/default.nix

37 lines
757 B
Nix
Raw Normal View History

2024-03-02 18:06:18 +00:00
{
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.aa.services.hydra;
in {
options.aa.services.hydra = with types; {
enable = mkEnableOption "hydra";
};
config = mkIf cfg.enable {
# NOTE: Need to create user to allow web configuration
# sudo -u hydra hydra-create-user alice \
# --full-name 'Alice Q. User' \
# --email-address 'alice@example.org' \
# --password-prompt \
# --role admin
services.hydra = {
enable = true;
hydraURL = "http://localhost:3000";
notificationSender = "hydra@localhost";
buildMachinesFiles = [];
useSubstitutes = true;
};
nix.settings = {
allowed-users = ["hydra"];
allowed-uris = ["github:"];
};
};
}