2024-07-17 00:09:18 +03:00
|
|
|
{ testers, config, extendModules, lib, system }:
|
|
|
|
|
|
|
|
let
|
|
|
|
lift = config;
|
|
|
|
|
|
|
|
snakeoil = {
|
|
|
|
ssh = {
|
|
|
|
public = lib.fileContents ./snakeoil/ssh/snakeoil-key.pub;
|
|
|
|
private = ./snakeoil/ssh/snakeoil-key;
|
|
|
|
};
|
|
|
|
wireguard = {
|
|
|
|
public = lib.genAttrs nodes (node: lib.fileContents ./snakeoil/wireguard/public-key-${toString digits.${node}});
|
|
|
|
private = lib.genAttrs nodes (node: ./snakeoil/wireguard/private-key-${toString digits.${node}});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nodes = lib.attrNames config.gods.fromLight;
|
|
|
|
digits = lib.attrsets.listToAttrs (lib.zipListsWith lib.nameValuePair nodes (lib.range 1 255));
|
|
|
|
depot' = extendModules {
|
|
|
|
modules = [
|
|
|
|
({ config, ... }: {
|
|
|
|
gods.fromLight = lib.mapAttrs (name: cfg: {
|
|
|
|
interfaces.primary = {
|
2024-07-17 22:57:45 +03:00
|
|
|
link = lib.mkForce "vprimary";
|
2024-07-17 00:09:18 +03:00
|
|
|
};
|
|
|
|
ssh.id.publicKey = lib.mkForce snakeoil.ssh.public;
|
|
|
|
}) lift.gods.fromLight;
|
|
|
|
|
|
|
|
cluster = lib.mkForce (lift.cluster.extendModules {
|
|
|
|
specialArgs.depot = config;
|
|
|
|
modules = [
|
|
|
|
{
|
|
|
|
hostLinks = lib.genAttrs nodes (node: {
|
|
|
|
mesh.extra = lib.mkForce (lift.cluster.config.hostLinks.${node}.mesh.extra // {
|
|
|
|
pubKey = snakeoil.wireguard.public.${node};
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
];
|
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
specialArgs = depot'.config.lib.summon system lib.id;
|
|
|
|
in
|
|
|
|
|
|
|
|
testers.runNixOSTest {
|
2024-07-17 20:39:37 +03:00
|
|
|
name = "simulacrum";
|
2024-07-17 00:09:18 +03:00
|
|
|
|
|
|
|
node = { inherit specialArgs; };
|
2024-07-17 22:57:45 +03:00
|
|
|
nodes = lib.genAttrs nodes (node: let
|
|
|
|
hour = depot'.config.hours.${node};
|
|
|
|
in {
|
2024-07-17 00:09:18 +03:00
|
|
|
imports = [
|
|
|
|
specialArgs.depot.hours.${node}.nixos
|
|
|
|
./modules/nixos/age-dummy-secrets
|
2024-07-17 20:39:37 +03:00
|
|
|
./modules/nixos/external-storage.nix
|
2024-07-17 00:09:18 +03:00
|
|
|
] ++ depot'.config.cluster.config.out.injectNixosConfig node;
|
|
|
|
|
2024-07-17 22:57:45 +03:00
|
|
|
boot.kernel.sysctl."net.ipv4.ip_forward" = "1";
|
|
|
|
networking = {
|
|
|
|
interfaces = {
|
|
|
|
${hour.interfaces.primary.link} = {
|
|
|
|
useDHCP = lib.mkForce false;
|
|
|
|
virtual = true;
|
|
|
|
ipv4.addresses = lib.mkForce [
|
|
|
|
{
|
|
|
|
address = hour.interfaces.primary.addr;
|
|
|
|
prefixLength = 32;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
eth1.ipv4.routes = lib.pipe nodes [
|
|
|
|
(lib.filter (n: n != node))
|
|
|
|
(map (n: let
|
|
|
|
hour = depot'.config.hours.${n};
|
|
|
|
in {
|
|
|
|
address = hour.interfaces.primary.addrPublic;
|
|
|
|
prefixLength = 32;
|
|
|
|
via = "192.168.1.${toString digits.${n}}";
|
|
|
|
}))
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
firewall.extraCommands = lib.mkAfter (lib.optionalString (hour.interfaces.primary.isNat) ''
|
|
|
|
# self-nat
|
|
|
|
iptables -t nat -A PREROUTING -d ${hour.interfaces.primary.addrPublic} -j DNAT --to-destination ${hour.interfaces.primary.addr}
|
|
|
|
iptables -t nat -A POSTROUTING -s ${hour.interfaces.primary.addr} -j SNAT --to-source ${hour.interfaces.primary.addrPublic}
|
|
|
|
'');
|
|
|
|
};
|
|
|
|
|
2024-07-17 20:39:37 +03:00
|
|
|
systemd.services = {
|
|
|
|
hyprspace.enable = false;
|
|
|
|
cachix-agent.enable = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.etc = {
|
|
|
|
"ssh/ssh_host_ed25519_key" = {
|
|
|
|
source = snakeoil.ssh.private;
|
|
|
|
mode = "0400";
|
|
|
|
};
|
|
|
|
"dummy-secrets/cluster-wireguard-meshPrivateKey".source = lib.mkForce snakeoil.wireguard.private.${node};
|
|
|
|
"dummy-secrets/grafana-agent-blackbox-secret-monitoring".text = lib.mkForce ''
|
|
|
|
SECRET_MONITORING_BLACKBOX_TARGET_1_NAME=example-external-service
|
|
|
|
SECRET_MONITORING_BLACKBOX_TARGET_1_MODULE=http2xx
|
|
|
|
SECRET_MONITORING_BLACKBOX_TARGET_1_ADDRESS=http://127.0.0.1:1
|
|
|
|
'';
|
|
|
|
"dummy-secrets/garageRpcSecret".text = lib.mkForce "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
|
|
|
|
};
|
|
|
|
virtualisation = {
|
|
|
|
cores = 2;
|
|
|
|
memorySize = 4096;
|
2024-07-17 00:09:18 +03:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
grail.succeed("false")
|
|
|
|
'';
|
|
|
|
}
|