2022-10-02 16:51:23 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../configuration/proxmox-vm
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.device = "/dev/vda";
|
2023-04-16 16:17:13 +02:00
|
|
|
|
|
|
|
boot.binfmt.emulatedSystems = [
|
|
|
|
"armv6l-linux"
|
|
|
|
"armv7l-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
2022-10-02 16:51:23 +02:00
|
|
|
|
|
|
|
networking.hostName = "hydra-1";
|
|
|
|
|
|
|
|
networking.useDHCP = false;
|
|
|
|
networking.interfaces.ens18.ipv6.addresses = [ { address = "2001:638:904:ffcb::a"; prefixLength = 64; } ];
|
|
|
|
networking.interfaces.ens19.ipv4.addresses = [ { address = "192.168.10.36"; prefixLength = 24; } ];
|
|
|
|
networking.defaultGateway6 = { address = "2001:638:904:ffcb::1"; interface = "ens18"; };
|
|
|
|
networking.defaultGateway = { address = "192.168.10.1"; interface = "ens19"; };
|
|
|
|
networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ];
|
|
|
|
|
2022-10-15 16:04:40 +02:00
|
|
|
nix = {
|
2024-04-08 08:16:29 +02:00
|
|
|
settings.allowed-uris = "http: https: git+https: github:";
|
2022-10-15 16:04:40 +02:00
|
|
|
distributedBuilds = true;
|
|
|
|
buildMachines = [
|
2023-07-08 23:29:55 +02:00
|
|
|
{
|
|
|
|
hostName = "localhost";
|
|
|
|
systems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"armv6l-linux"
|
|
|
|
"armv7l-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
|
|
|
}
|
2022-10-15 16:04:40 +02:00
|
|
|
{
|
|
|
|
hostName = "hydra-2.net.clerie.de";
|
2022-10-18 07:11:20 +02:00
|
|
|
sshUser = "root";
|
2023-04-16 16:17:13 +02:00
|
|
|
systems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"armv6l-linux"
|
|
|
|
"armv7l-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
2022-10-17 21:09:58 +02:00
|
|
|
sshKey = "/var/lib/hydra/id_ed25519";
|
2022-10-16 12:50:16 +02:00
|
|
|
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSURaRUQ5UU0rcWU3c0I2UjZhdHZQNldOYUkyc0Mybmg3VFRzRDZrZ1JwbnIgcm9vdEBoeWRyYS0yCg==";
|
2022-10-15 16:04:40 +02:00
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2022-10-02 22:12:19 +02:00
|
|
|
|
2023-04-16 16:17:13 +02:00
|
|
|
programs.ssh.knownHosts."hydra-1.net.clerie.de".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE2xQBCsFBCwL9n4OP/bPngtNO1fy9kPw13Z/NDoba16 root@hydra-1";
|
2022-10-17 21:09:58 +02:00
|
|
|
programs.ssh.knownHosts."hydra-2.net.clerie.de".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDZED9QM+qe7sB6R6atvP6WNaI2sC2nh7TTsD6kgRpnr root@hydra-2";
|
|
|
|
|
2023-04-21 22:07:54 +02:00
|
|
|
services.openssh.settings = {
|
|
|
|
PermitRootLogin = "yes";
|
|
|
|
};
|
2023-04-17 06:33:45 +02:00
|
|
|
|
2023-04-16 16:17:13 +02:00
|
|
|
users.extraUsers.root.openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMv8Lbca/CR4das3HJ2F/sQ9dA7kdGS1hSVTt5lX4diP root@hydra-1"
|
|
|
|
];
|
|
|
|
|
2022-10-02 17:46:30 +02:00
|
|
|
services.hydra = {
|
|
|
|
enable = true;
|
|
|
|
port = 3001;
|
|
|
|
hydraURL = "https://hydra.clerie.de";
|
|
|
|
listenHost = "localhost";
|
|
|
|
notificationSender = "noreply@hydra.clerie.de";
|
2022-10-14 14:53:39 +02:00
|
|
|
useSubstitutes = true;
|
2022-12-07 20:19:58 +01:00
|
|
|
extraConfig = ''
|
|
|
|
binary_cache_public_uri = https://nix-cache.clerie.de
|
|
|
|
'';
|
2022-10-02 17:46:30 +02:00
|
|
|
};
|
|
|
|
|
2023-09-10 10:55:46 +02:00
|
|
|
services.harmonia = {
|
2022-11-13 16:38:18 +01:00
|
|
|
enable = true;
|
2023-09-10 10:55:46 +02:00
|
|
|
settings.bind = "[::1]:5005";
|
2024-04-21 18:45:15 +02:00
|
|
|
signKeyPath = config.sops.secrets.nix-cache-key.path;
|
2022-11-13 16:38:18 +01:00
|
|
|
};
|
|
|
|
|
2022-10-02 17:46:30 +02:00
|
|
|
services.nginx.enable = true;
|
|
|
|
services.nginx.virtualHosts = {
|
|
|
|
"hydra.clerie.de" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
locations = {
|
|
|
|
"/" = {
|
|
|
|
proxyPass = "http://localhost:3001";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-11-13 16:38:18 +01:00
|
|
|
"nix-cache.clerie.de" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
2022-11-18 23:59:00 +01:00
|
|
|
locations."= /" = {
|
|
|
|
return = ''200 'Nix Cache by clerie\n\nPublic key:\n\n nix-cache.clerie.de:bAt1GJTS9BOTcXFWj3nURrSlcjqikCev9yDvqArMP5g=\n\nNixOS Configuration:\n\n nix.settings = {\n substituters = [\n "https://nix-cache.clerie.de"\n ];\n trusted-public-keys = [\n "nix-cache.clerie.de:bAt1GJTS9BOTcXFWj3nURrSlcjqikCev9yDvqArMP5g="\n ];\n }\n\nTry:\n\n nix build --substituters "https://nix-cache.clerie.de" \\\n --trusted-public-keys "nix-cache.clerie.de:bAt1GJTS9BOTcXFWj3nURrSlcjqikCev9yDvqArMP5g=" \\\n "git+https://git.clerie.de/clerie/fieldpoc.git#fieldpoc"\n\n.-*..*-.' '';
|
|
|
|
extraConfig = ''
|
|
|
|
types { } default_type "text/plain; charset=utf-8";
|
|
|
|
'';
|
|
|
|
};
|
2022-11-13 16:38:18 +01:00
|
|
|
locations."/" = {
|
2023-09-10 10:55:46 +02:00
|
|
|
proxyPass = "http://[::1]:5005";
|
|
|
|
extraConfig = ''
|
|
|
|
proxy_redirect http:// https://;
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection $connection_upgrade;
|
|
|
|
'';
|
2022-11-13 16:38:18 +01:00
|
|
|
};
|
|
|
|
};
|
2022-10-02 17:46:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
|
|
|
2022-10-14 14:53:39 +02:00
|
|
|
clerie.monitoring = {
|
|
|
|
enable = true;
|
|
|
|
id = "210";
|
|
|
|
pubkey = "bA7b+vRlfvbGma74+Tz+FHGcRKPe+oAOfXmuqDR4+Sc=";
|
|
|
|
};
|
|
|
|
|
2022-10-02 16:51:23 +02:00
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|