From 0b551af8ef60d7a4ac7c1b239cf119c962f0bc8d Mon Sep 17 00:00:00 2001 From: osbm Date: Sun, 27 Jul 2025 02:51:16 +0300 Subject: [PATCH] add hydra to wallfacer --- hosts/wallfacer/configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/hosts/wallfacer/configuration.nix b/hosts/wallfacer/configuration.nix index 9c059d9..84235cb 100644 --- a/hosts/wallfacer/configuration.nix +++ b/hosts/wallfacer/configuration.nix @@ -9,10 +9,19 @@ enableFonts = false; enableNextcloud = true; }; + + services.hydra = { + enable = true; + hydraURL = "http://localhost:54543"; + notificationSender = "hydra@localhost"; + buildMachinesFiles = []; + useSubstitutes = true; + }; + networking.firewall.allowedTCPPorts = [ 54543 ]; + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; i18n.inputMethod.enable = lib.mkForce false; networking.hostName = "wallfacer"; - # services.getty.autologinUser = "osbm"; system.stateVersion = "25.05"; }