1
0

profiles/hydra-build-machine: Migrate configuration to profile

This commit is contained in:
2025-05-08 17:17:01 +02:00
parent fe23b7745f
commit 1042cf279f
5 changed files with 29 additions and 18 deletions

View File

@@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
with lib;
{
options.profiles.clerie.hydra-build-machine = {
enable = mkEnableOption "Set defaults for hydra build machines";
};
config = mkIf config.profiles.clerie.hydra-build-machine.enable {
# Allow Hydra to fetch remote URLs in restricted mode
nix.settings.allowed-uris = "http: https: git+https: github:";
services.openssh.settings= {
PermitRootLogin = "yes";
};
users.extraUsers.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMv8Lbca/CR4das3HJ2F/sQ9dA7kdGS1hSVTt5lX4diP root@hydra-1"
];
};
}